From f14cffdbe700a80b2b1e49f51da8867ac6246a6e Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sat, 29 Oct 2016 10:45:12 +0530 Subject: [PATCH 01/32] Properly escape strings in MySQL statement values Use *_real_escape string functions provided by connectors to escape strings while exporting Fix #12453 Signed-off-by: Deven Bansod Conflicts: libraries/server_privileges.lib.php --- db_operations.php | 2 +- db_tracking.php | 2 +- import.php | 4 +- libraries/DatabaseInterface.php | 73 ++++--- libraries/DbSearch.php | 4 +- libraries/DisplayResults.php | 2 +- libraries/Menu.php | 2 +- libraries/Partition.php | 12 +- libraries/RecentFavoriteTable.php | 6 +- libraries/SavedSearches.php | 24 +-- libraries/SystemDatabase.php | 4 +- libraries/Table.php | 114 +++++------ libraries/Tracker.php | 80 ++++---- libraries/Util.php | 10 +- libraries/bookmark.lib.php | 24 +-- libraries/central_columns.lib.php | 64 +++--- libraries/common.inc.php | 2 +- .../server/ServerVariablesController.php | 6 +- .../table/TableSearchController.php | 16 +- .../table/TableStructureController.php | 4 +- libraries/create_addfield.lib.php | 10 +- libraries/db_designer.lib.php | 2 +- libraries/db_table_exists.lib.php | 2 +- libraries/dbi/DBIDummy.php | 13 ++ libraries/dbi/DBIExtension.php | 10 + libraries/dbi/DBIMysql.php | 13 ++ libraries/dbi/DBIMysqli.php | 13 ++ libraries/display_export.lib.php | 16 +- libraries/export.lib.php | 4 +- libraries/import.lib.php | 2 +- libraries/insert_edit.lib.php | 12 +- libraries/mysql_charsets.lib.php | 2 +- libraries/navigation/Navigation.php | 26 +-- libraries/navigation/NavigationTree.php | 4 +- libraries/navigation/nodes/Node.php | 18 +- libraries/navigation/nodes/NodeDatabase.php | 38 ++-- libraries/navigation/nodes/NodeTable.php | 20 +- libraries/operations.lib.php | 32 +-- libraries/plugins/export/ExportSql.php | 28 +-- libraries/plugins/export/ExportXml.php | 2 +- libraries/plugins/import/ImportCsv.php | 2 +- libraries/plugins/import/ImportLdi.php | 6 +- libraries/plugins/schema/pdf/Pdf.php | 2 +- libraries/pmd_common.php | 48 ++--- libraries/relation.lib.php | 92 ++++----- libraries/relation_cleanup.lib.php | 96 ++++----- libraries/replication.inc.php | 2 +- libraries/replication_gui.lib.php | 8 +- libraries/rte/rte_events.lib.php | 10 +- libraries/rte/rte_routines.lib.php | 8 +- libraries/rte/rte_triggers.lib.php | 2 +- libraries/server_privileges.lib.php | 184 +++++++++--------- libraries/server_status_monitor.lib.php | 2 +- libraries/server_user_groups.lib.php | 12 +- libraries/sql.lib.php | 2 +- libraries/tracking.lib.php | 10 +- libraries/transformations.lib.php | 42 ++-- libraries/user_preferences.lib.php | 12 +- test/classes/plugin/import/ImportLdiTest.php | 3 + test/libraries/PMA_server_privileges_test.php | 20 +- user_password.php | 4 +- 61 files changed, 685 insertions(+), 604 deletions(-) diff --git a/db_operations.php b/db_operations.php index 35e680aa76..3dd0c0ceb2 100644 --- a/db_operations.php +++ b/db_operations.php @@ -305,7 +305,7 @@ if ($cfgRelation['pdfwork'] && $num_tables > 0) { SELECT * FROM ' . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) . ' - WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($GLOBALS['db']) + WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($GLOBALS['db']) . '\''; $test_rs = PMA_queryAsControlUser( $test_query, diff --git a/db_tracking.php b/db_tracking.php index ad072fca44..c8f78379dd 100644 --- a/db_tracking.php +++ b/db_tracking.php @@ -114,7 +114,7 @@ $cfgRelation = PMA_getRelationsParam(); $all_tables_query = ' SELECT table_name, MAX(version) as version FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['tracking']) . - ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($_REQUEST['db']) . + ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['db']) . '\' ' . ' GROUP BY table_name' . ' ORDER BY table_name ASC'; diff --git a/import.php b/import.php index fe6f00d36d..b6db86fc00 100644 --- a/import.php +++ b/import.php @@ -120,13 +120,13 @@ if (! empty($sql_query)) { // making sure that :param does not apply values to :param1 $sql_query = preg_replace( '/' . $quoted . '([^a-zA-Z0-9_])/', - PMA\libraries\Util::sqlAddSlashes($replacement) . '${1}', + $GLOBALS['dbi']->escapeString($replacement) . '${1}', $sql_query ); // for parameters the appear at the end of the string $sql_query = preg_replace( '/' . $quoted . '$/', - PMA\libraries\Util::sqlAddSlashes($replacement), + $GLOBALS['dbi']->escapeString($replacement), $sql_query ); } diff --git a/libraries/DatabaseInterface.php b/libraries/DatabaseInterface.php index 72fd3e42c7..94e2257790 100644 --- a/libraries/DatabaseInterface.php +++ b/libraries/DatabaseInterface.php @@ -307,13 +307,13 @@ class DatabaseInterface if (true === $tbl_is_group) { $sql_where_table = 'AND t.`TABLE_NAME` LIKE \'' . Util::escapeMysqlWildcards( - Util::sqlAddSlashes($table) + $GLOBALS['dbi']->escapeString($table) ) . '%\''; } else { $sql_where_table = 'AND t.`TABLE_NAME` ' . Util::getCollateForIS() . ' = \'' - . Util::sqlAddSlashes($table) . '\''; + . $GLOBALS['dbi']->escapeString($table) . '\''; } } else { $sql_where_table = ''; @@ -489,9 +489,10 @@ class DatabaseInterface $needAnd = false; if ($table || (true === $tbl_is_group)) { $sql .= " `Name` LIKE '" - . Util::escapeMysqlWildcards( - Util::sqlAddSlashes($table, true) - ) + . + // Util::escapeMysqlWildcards( + $this->escapeString($table, $link) + // ) . "%'"; $needAnd = true; } @@ -851,7 +852,7 @@ class DatabaseInterface // get table information from information_schema if (! empty($database)) { $sql_where_schema = 'WHERE `SCHEMA_NAME` LIKE \'' - . Util::sqlAddSlashes($database) . '\''; + . $this->escapeString($database, $link) . '\''; } else { $sql_where_schema = ''; } @@ -1090,19 +1091,19 @@ class DatabaseInterface // get columns information from information_schema if (null !== $database) { $sql_wheres[] = '`TABLE_SCHEMA` = \'' - . Util::sqlAddSlashes($database) . '\' '; + . $this->escapeString($database, $link) . '\' '; } else { $array_keys[] = 'TABLE_SCHEMA'; } if (null !== $table) { $sql_wheres[] = '`TABLE_NAME` = \'' - . Util::sqlAddSlashes($table) . '\' '; + . $this->escapeString($table, $link) . '\' '; } else { $array_keys[] = 'TABLE_NAME'; } if (null !== $column) { $sql_wheres[] = '`COLUMN_NAME` = \'' - . Util::sqlAddSlashes($column) . '\' '; + . $this->escapeString($column, $link) . '\' '; } else { $array_keys[] = 'COLUMN_NAME'; } @@ -1147,7 +1148,7 @@ class DatabaseInterface $sql = 'SHOW FULL COLUMNS FROM ' . Util::backquote($database) . '.' . Util::backquote($table); if (null !== $column) { - $sql .= " LIKE '" . Util::sqlAddSlashes($column, true) . "'"; + $sql .= " LIKE '" . $this->escapeString($column, $link) . "'"; } $columns = $this->fetchResult($sql, 'Field', null, $link); @@ -1235,7 +1236,7 @@ class DatabaseInterface $sql = 'SHOW ' . ($full ? 'FULL' : '') . ' COLUMNS FROM ' . Util::backquote($database) . '.' . Util::backquote($table) . (($column !== null) ? "LIKE '" - . Util::sqlAddSlashes($column, true) . "'" : ''); + . $GLOBALS['dbi']->escapeString($column) . "'" : ''); return $sql; } @@ -1475,7 +1476,7 @@ class DatabaseInterface } $result = $this->tryQuery( "SET collation_connection = '" - . Util::sqlAddSlashes($GLOBALS['collation_connection']) + . $this->escapeString($GLOBALS['collation_connection'], $link) . "';", $link, self::QUERY_STORE @@ -1487,7 +1488,7 @@ class DatabaseInterface ); $this->query( "SET collation_connection = '" - . Util::sqlAddSlashes($default_collation) + . $this->escapeString($GLOBALS['collation_connection'], $link) . "';", $link, self::QUERY_STORE @@ -1871,13 +1872,13 @@ class DatabaseInterface . " `DTD_IDENTIFIER`" . " FROM `information_schema`.`ROUTINES`" . " WHERE `ROUTINE_SCHEMA` " . Util::getCollateForIS() - . " = '" . Util::sqlAddSlashes($db) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($db) . "'"; if (PMA_isValid($which, array('FUNCTION','PROCEDURE'))) { $query .= " AND `ROUTINE_TYPE` = '" . $which . "'"; } if (! empty($name)) { $query .= " AND `SPECIFIC_NAME`" - . " = '" . Util::sqlAddSlashes($name) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($name) . "'"; } $result = $this->fetchResult($query); if (!empty($result)) { @@ -1886,10 +1887,10 @@ class DatabaseInterface } else { if ($which == 'FUNCTION' || $which == null) { $query = "SHOW FUNCTION STATUS" - . " WHERE `Db` = '" . Util::sqlAddSlashes($db) . "'"; + . " WHERE `Db` = '" . $GLOBALS['dbi']->escapeString($db) . "'"; if (! empty($name)) { $query .= " AND `Name` = '" - . Util::sqlAddSlashes($name) . "'"; + . $GLOBALS['dbi']->escapeString($name) . "'"; } $result = $this->fetchResult($query); if (!empty($result)) { @@ -1898,10 +1899,10 @@ class DatabaseInterface } if ($which == 'PROCEDURE' || $which == null) { $query = "SHOW PROCEDURE STATUS" - . " WHERE `Db` = '" . Util::sqlAddSlashes($db) . "'"; + . " WHERE `Db` = '" . $GLOBALS['dbi']->escapeString($db) . "'"; if (! empty($name)) { $query .= " AND `Name` = '" - . Util::sqlAddSlashes($name) . "'"; + . $GLOBALS['dbi']->escapeString($name) . "'"; } $result = $this->fetchResult($query); if (!empty($result)) { @@ -1961,16 +1962,16 @@ class DatabaseInterface . "`DATABASE_COLLATION` AS `Database Collation`" . " FROM `information_schema`.`EVENTS`" . " WHERE `EVENT_SCHEMA` " . Util::getCollateForIS() - . " = '" . Util::sqlAddSlashes($db) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($db) . "'"; if (! empty($name)) { $query .= " AND `EVENT_NAME`" - . " = '" . Util::sqlAddSlashes($name) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($name) . "'"; } } else { $query = "SHOW EVENTS FROM " . Util::backquote($db); if (! empty($name)) { $query .= " AND `Name` = '" - . Util::sqlAddSlashes($name) . "'"; + . $GLOBALS['dbi']->escapeString($name) . "'"; } } @@ -2013,16 +2014,16 @@ class DatabaseInterface . ', EVENT_OBJECT_SCHEMA, EVENT_OBJECT_TABLE, DEFINER' . ' FROM information_schema.TRIGGERS' . ' WHERE EVENT_OBJECT_SCHEMA ' . Util::getCollateForIS() . '=' - . ' \'' . Util::sqlAddSlashes($db) . '\''; + . ' \'' . $GLOBALS['dbi']->escapeString($db) . '\''; if (! empty($table)) { $query .= " AND EVENT_OBJECT_TABLE " . Util::getCollateForIS() - . " = '" . Util::sqlAddSlashes($table) . "';"; + . " = '" . $GLOBALS['dbi']->escapeString($table) . "';"; } } else { $query = "SHOW TRIGGERS FROM " . Util::backquote($db); if (! empty($table)) { - $query .= " LIKE '" . Util::sqlAddSlashes($table, true) . "';"; + $query .= " LIKE '" . $GLOBALS['dbi']->escapeString($table) . "';"; } } @@ -2649,6 +2650,27 @@ class DatabaseInterface return $this->_extension->fieldFlags($result, $i); } + /** + * returns properly escaped string for use in MySQL queries + * + * @param string $str string to be escaped + * @param mixed $link optional database link to use + * + * @return string a MySQL escaped string + */ + public function escapeString($str, $link = null) + { + if ($link === null) { + $link = $this->getLink(); + } + + if ($this->_extension === null) { + return $str; + } + + return $this->_extension->escapeString($link, $str); + } + /** * Gets server connection port * @@ -2704,6 +2726,7 @@ class DatabaseInterface if (isset($GLOBALS['userlink']) && !is_null($GLOBALS['userlink'])) { return $GLOBALS['userlink']; } else { + error_log("YAHA\n", 3, "/tmp/a.txt"); return false; } } diff --git a/libraries/DbSearch.php b/libraries/DbSearch.php index 968a8e7b12..ce31557f92 100644 --- a/libraries/DbSearch.php +++ b/libraries/DbSearch.php @@ -139,7 +139,7 @@ class DbSearch ) { unset($this->_criteriaColumnName); } else { - $this->_criteriaColumnName = Util::sqlAddSlashes( + $this->_criteriaColumnName = $GLOBALS['dbi']->escapeString( $_REQUEST['criteriaColumnName'], true ); } @@ -203,7 +203,7 @@ class DbSearch // For "as regular expression" (search option 4), LIKE won't be used // Usage example: If user is searching for a literal $ in a regexp search, // he should enter \$ as the value. - $criteriaSearchStringEscaped = Util::sqlAddSlashes( + $criteriaSearchStringEscaped = $GLOBALS['dbi']->escapeString( $this->_criteriaSearchString, ($this->_criteriaSearchType == 4 ? false : true) ); diff --git a/libraries/DisplayResults.php b/libraries/DisplayResults.php index e8cea12a98..98a3804a0b 100644 --- a/libraries/DisplayResults.php +++ b/libraries/DisplayResults.php @@ -4041,7 +4041,7 @@ class DisplayResults || $bool_nowrap) ? ' nowrap' : ''; $where_comparison = ' = \'' - . Util::sqlAddSlashes($column) + . $GLOBALS['dbi']->escapeString($column) . '\''; $cell = $this->_getRowData( diff --git a/libraries/Menu.php b/libraries/Menu.php index eb2eb27b75..39be2ad244 100644 --- a/libraries/Menu.php +++ b/libraries/Menu.php @@ -139,7 +139,7 @@ class Menu . " AND `tab` LIKE '" . $level . "%'" . " AND `usergroup` = (SELECT usergroup FROM " . $userTable . " WHERE `username` = '" - . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "')"; + . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "')"; $result = PMA_queryAsControlUser($sql_query, false); if ($result) { diff --git a/libraries/Partition.php b/libraries/Partition.php index c5488e8af7..141dcb7b33 100644 --- a/libraries/Partition.php +++ b/libraries/Partition.php @@ -153,8 +153,8 @@ class Partition extends SubPartition if (Partition::havePartitioning()) { $result = $GLOBALS['dbi']->fetchResult( "SELECT * FROM `information_schema`.`PARTITIONS`" - . " WHERE `TABLE_SCHEMA` = '" . Util::sqlAddSlashes($db) - . "' AND `TABLE_NAME` = '" . Util::sqlAddSlashes($table) . "'" + . " WHERE `TABLE_SCHEMA` = '" . $GLOBALS['dbi']->escapeString($db) + . "' AND `TABLE_NAME` = '" . $GLOBALS['dbi']->escapeString($table) . "'" ); if ($result) { $partitionMap = array(); @@ -194,8 +194,8 @@ class Partition extends SubPartition if (Partition::havePartitioning()) { return $GLOBALS['dbi']->fetchResult( "SELECT DISTINCT `PARTITION_NAME` FROM `information_schema`.`PARTITIONS`" - . " WHERE `TABLE_SCHEMA` = '" . Util::sqlAddSlashes($db) - . "' AND `TABLE_NAME` = '" . Util::sqlAddSlashes($table) . "'" + . " WHERE `TABLE_SCHEMA` = '" . $GLOBALS['dbi']->escapeString($db) + . "' AND `TABLE_NAME` = '" . $GLOBALS['dbi']->escapeString($table) . "'" ); } else { return array(); @@ -215,8 +215,8 @@ class Partition extends SubPartition if (Partition::havePartitioning()) { $partition_method = $GLOBALS['dbi']->fetchResult( "SELECT `PARTITION_METHOD` FROM `information_schema`.`PARTITIONS`" - . " WHERE `TABLE_SCHEMA` = '" . Util::sqlAddSlashes($db) . "'" - . " AND `TABLE_NAME` = '" . Util::sqlAddSlashes($table) . "'" + . " WHERE `TABLE_SCHEMA` = '" . $GLOBALS['dbi']->escapeString($db) . "'" + . " AND `TABLE_NAME` = '" . $GLOBALS['dbi']->escapeString($table) . "'" . " LIMIT 1" ); if (! empty($partition_method)) { diff --git a/libraries/RecentFavoriteTable.php b/libraries/RecentFavoriteTable.php index 6063b75e7f..5c209bfe0e 100644 --- a/libraries/RecentFavoriteTable.php +++ b/libraries/RecentFavoriteTable.php @@ -96,7 +96,7 @@ class RecentFavoriteTable // Read from phpMyAdmin database, if recent tables is not in session $sql_query = " SELECT `tables` FROM " . $this->_getPmaTable() . - " WHERE `username` = '" . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "'"; + " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "'"; $return = array(); $result = PMA_queryAsControlUser($sql_query, false); @@ -119,8 +119,8 @@ class RecentFavoriteTable $username = $GLOBALS['cfg']['Server']['user']; $sql_query = " REPLACE INTO " . $this->_getPmaTable() . " (`username`, `tables`)" . - " VALUES ('" . Util::sqlAddSlashes($username) . "', '" - . Util::sqlAddSlashes( + " VALUES ('" . $GLOBALS['dbi']->escapeString($username) . "', '" + . $GLOBALS['dbi']->escapeString( json_encode($this->_tables) ) . "')"; diff --git a/libraries/SavedSearches.php b/libraries/SavedSearches.php index ccbd9c5f95..db80ff75d0 100644 --- a/libraries/SavedSearches.php +++ b/libraries/SavedSearches.php @@ -273,7 +273,7 @@ class SavedSearches //If it's an insert. if (null === $this->getId()) { $wheres = array( - "search_name = '" . Util::sqlAddSlashes($this->getSearchName()) + "search_name = '" . $GLOBALS['dbi']->escapeString($this->getSearchName()) . "'" ); $existingSearches = $this->getList($wheres); @@ -292,10 +292,10 @@ class SavedSearches $sqlQuery = "INSERT INTO " . $savedSearchesTbl . "(`username`, `db_name`, `search_name`, `search_data`)" . " VALUES (" - . "'" . Util::sqlAddSlashes($this->getUsername()) . "'," - . "'" . Util::sqlAddSlashes($this->getDbname()) . "'," - . "'" . Util::sqlAddSlashes($this->getSearchName()) . "'," - . "'" . Util::sqlAddSlashes(json_encode($this->getCriterias())) + . "'" . $GLOBALS['dbi']->escapeString($this->getUsername()) . "'," + . "'" . $GLOBALS['dbi']->escapeString($this->getDbname()) . "'," + . "'" . $GLOBALS['dbi']->escapeString($this->getSearchName()) . "'," + . "'" . $GLOBALS['dbi']->escapeString(json_encode($this->getCriterias())) . "')"; $result = (bool)PMA_queryAsControlUser($sqlQuery); @@ -311,7 +311,7 @@ class SavedSearches //Else, it's an update. $wheres = array( "id != " . $this->getId(), - "search_name = '" . Util::sqlAddSlashes($this->getSearchName()) . "'" + "search_name = '" . $GLOBALS['dbi']->escapeString($this->getSearchName()) . "'" ); $existingSearches = $this->getList($wheres); @@ -328,9 +328,9 @@ class SavedSearches $sqlQuery = "UPDATE " . $savedSearchesTbl . "SET `search_name` = '" - . Util::sqlAddSlashes($this->getSearchName()) . "', " + . $GLOBALS['dbi']->escapeString($this->getSearchName()) . "', " . "`search_data` = '" - . Util::sqlAddSlashes(json_encode($this->getCriterias())) . "' " + . $GLOBALS['dbi']->escapeString(json_encode($this->getCriterias())) . "' " . "WHERE id = " . $this->getId(); return (bool)PMA_queryAsControlUser($sqlQuery); } @@ -358,7 +358,7 @@ class SavedSearches . Util::backquote($this->_config['cfgRelation']['savedsearches']); $sqlQuery = "DELETE FROM " . $savedSearchesTbl - . "WHERE id = '" . Util::sqlAddSlashes($this->getId()) . "'"; + . "WHERE id = '" . $GLOBALS['dbi']->escapeString($this->getId()) . "'"; return (bool)PMA_queryAsControlUser($sqlQuery); } @@ -386,7 +386,7 @@ class SavedSearches . Util::backquote($this->_config['cfgRelation']['savedsearches']); $sqlQuery = "SELECT id, search_name, search_data " . "FROM " . $savedSearchesTbl . " " - . "WHERE id = '" . Util::sqlAddSlashes($this->getId()) . "' "; + . "WHERE id = '" . $GLOBALS['dbi']->escapeString($this->getId()) . "' "; $resList = PMA_queryAsControlUser($sqlQuery); @@ -426,8 +426,8 @@ class SavedSearches $sqlQuery = "SELECT id, search_name " . "FROM " . $savedSearchesTbl . " " . "WHERE " - . "username = '" . Util::sqlAddSlashes($this->getUsername()) . "' " - . "AND db_name = '" . Util::sqlAddSlashes($this->getDbname()) . "' "; + . "username = '" . $GLOBALS['dbi']->escapeString($this->getUsername()) . "' " + . "AND db_name = '" . $GLOBALS['dbi']->escapeString($this->getDbname()) . "' "; foreach ($wheres as $where) { $sqlQuery .= "AND " . $where . " "; diff --git a/libraries/SystemDatabase.php b/libraries/SystemDatabase.php index 909356d3f7..7e39e46293 100644 --- a/libraries/SystemDatabase.php +++ b/libraries/SystemDatabase.php @@ -50,7 +50,7 @@ class SystemDatabase "SELECT * FROM %s.%s WHERE `db_name` = '%s'", Util::backquote($cfgRelation['db']), Util::backquote($cfgRelation['column_info']), - Util::sqlAddSlashes($db) + $GLOBALS['dbi']->escapeString($db) ); return $this->dbi->tryQuery($pma_transformation_sql); @@ -105,7 +105,7 @@ class SystemDatabase $data_row['comment'], $data_row['mimetype'], $data_row['transformation'], - Util::sqlAddSlashes( + $GLOBALS['dbi']->escapeString( $data_row['transformation_options'] ) ); diff --git a/libraries/Table.php b/libraries/Table.php index 9caba7e6e4..02ba13f3bc 100644 --- a/libraries/Table.php +++ b/libraries/Table.php @@ -190,8 +190,8 @@ class Table $result = $this->_dbi->fetchResult( "SELECT TABLE_NAME FROM information_schema.VIEWS - WHERE TABLE_SCHEMA = '" . Util::sqlAddSlashes($db) . "' - AND TABLE_NAME = '" . Util::sqlAddSlashes($table) . "'" + WHERE TABLE_SCHEMA = '" . $GLOBALS['dbi']->escapeString($db) . "' + AND TABLE_NAME = '" . $GLOBALS['dbi']->escapeString($table) . "'" ); return $result ? true : false; } @@ -210,8 +210,8 @@ class Table $result = $this->_dbi->fetchResult( "SELECT TABLE_NAME FROM information_schema.VIEWS - WHERE TABLE_SCHEMA = '" . Util::sqlAddSlashes($this->_db_name) . "' - AND TABLE_NAME = '" . Util::sqlAddSlashes($this->_name) . "' + WHERE TABLE_SCHEMA = '" . $GLOBALS['dbi']->escapeString($this->_db_name) . "' + AND TABLE_NAME = '" . $GLOBALS['dbi']->escapeString($this->_name) . "' AND IS_UPDATABLE = 'YES'" ); return $result ? true : false; @@ -240,8 +240,8 @@ class Table $results = $this->_dbi->fetchResult( "SELECT COLUMN_NAME, DATA_TYPE FROM information_schema.COLUMNS - WHERE TABLE_SCHEMA = '" . Util::sqlAddSlashes($this->_db_name) - . " AND TABLE_NAME = '" . Util::sqlAddSlashes($this->_name) . "'" + WHERE TABLE_SCHEMA = '" . $GLOBALS['dbi']->escapeString($this->_db_name) + . " AND TABLE_NAME = '" . $GLOBALS['dbi']->escapeString($this->_name) . "'" ); foreach ($results as $result) { @@ -454,13 +454,13 @@ class Table } else { // Invalid BOOLEAN value $query .= ' DEFAULT \'' - . Util::sqlAddSlashes($default_value) . '\''; + . $GLOBALS['dbi']->escapeString($default_value) . '\''; } } elseif ($type == 'BINARY' || $type == 'VARBINARY') { $query .= ' DEFAULT 0x' . $default_value; } else { $query .= ' DEFAULT \'' - . Util::sqlAddSlashes($default_value) . '\''; + . $GLOBALS['dbi']->escapeString($default_value) . '\''; } break; /** @noinspection PhpMissingBreakStatementInspection */ @@ -487,7 +487,7 @@ class Table } } if (!empty($comment)) { - $query .= " COMMENT '" . Util::sqlAddSlashes($comment) . "'"; + $query .= " COMMENT '" . $GLOBALS['dbi']->escapeString($comment) . "'"; } // move column @@ -661,14 +661,14 @@ class Table $where_parts = array(); foreach ($where_fields as $_where => $_value) { $where_parts[] = Util::backquote($_where) . ' = \'' - . Util::sqlAddSlashes($_value) . '\''; + . $GLOBALS['dbi']->escapeString($_value) . '\''; } $new_parts = array(); $new_value_parts = array(); foreach ($new_fields as $_where => $_value) { $new_parts[] = Util::backquote($_where); - $new_value_parts[] = Util::sqlAddSlashes($_value); + $new_value_parts[] = $GLOBALS['dbi']->escapeString($_value); } $table_copy_query = ' @@ -687,7 +687,7 @@ class Table $value_parts = array(); foreach ($table_copy_row as $_key => $_val) { if (isset($row_fields[$_key]) && $row_fields[$_key] == 'cc') { - $value_parts[] = Util::sqlAddSlashes($_val); + $value_parts[] = $GLOBALS['dbi']->escapeString($_val); } } @@ -1088,10 +1088,10 @@ class Table . Util::backquote($GLOBALS['cfgRelation']['column_info']) . ' WHERE ' . ' db_name = \'' - . Util::sqlAddSlashes($source_db) . '\'' + . $GLOBALS['dbi']->escapeString($source_db) . '\'' . ' AND ' . ' table_name = \'' - . Util::sqlAddSlashes($source_table) . '\'' + . $GLOBALS['dbi']->escapeString($source_table) . '\'' ); // Write every comment as new copied entry. [MIME] @@ -1106,21 +1106,21 @@ class Table . ($GLOBALS['cfgRelation']['mimework'] ? ', mimetype, transformation, transformation_options' : '') - . ') ' . ' VALUES(' . '\'' . Util::sqlAddSlashes($target_db) - . '\',\'' . Util::sqlAddSlashes($target_table) . '\',\'' - . Util::sqlAddSlashes($comments_copy_row['column_name']) + . ') ' . ' VALUES(' . '\'' . $GLOBALS['dbi']->escapeString($target_db) + . '\',\'' . $GLOBALS['dbi']->escapeString($target_table) . '\',\'' + . $GLOBALS['dbi']->escapeString($comments_copy_row['column_name']) . '\'' . ($GLOBALS['cfgRelation']['mimework'] - ? ',\'' . Util::sqlAddSlashes( + ? ',\'' . $GLOBALS['dbi']->escapeString( $comments_copy_row['comment'] ) - . '\',' . '\'' . Util::sqlAddSlashes( + . '\',' . '\'' . $GLOBALS['dbi']->escapeString( $comments_copy_row['mimetype'] ) - . '\',' . '\'' . Util::sqlAddSlashes( + . '\',' . '\'' . $GLOBALS['dbi']->escapeString( $comments_copy_row['transformation'] ) - . '\',' . '\'' . Util::sqlAddSlashes( + . '\',' . '\'' . $GLOBALS['dbi']->escapeString( $comments_copy_row['transformation_options'] ) . '\'' @@ -1556,9 +1556,9 @@ class Table // Read from phpMyAdmin database $sql_query = " SELECT `prefs` FROM " . $pma_table - . " WHERE `username` = '" . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "'" - . " AND `db_name` = '" . Util::sqlAddSlashes($this->_db_name) . "'" - . " AND `table_name` = '" . Util::sqlAddSlashes($this->_name) . "'"; + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "'" + . " AND `db_name` = '" . $GLOBALS['dbi']->escapeString($this->_db_name) . "'" + . " AND `table_name` = '" . $GLOBALS['dbi']->escapeString($this->_name) . "'"; $row = $this->_dbi->fetchArray(PMA_queryAsControlUser($sql_query)); if (isset($row[0])) { @@ -1579,14 +1579,14 @@ class Table $pma_table = Util::backquote($cfgRelation['db']) . "." . Util::backquote($cfgRelation['table_uiprefs']); - $secureDbName = Util::sqlAddSlashes($this->_db_name); + $secureDbName = $GLOBALS['dbi']->escapeString($this->_db_name); $username = $GLOBALS['cfg']['Server']['user']; $sql_query = " REPLACE INTO " . $pma_table . " (username, db_name, table_name, prefs) VALUES ('" - . Util::sqlAddSlashes($username) . "', '" . $secureDbName - . "', '" . Util::sqlAddSlashes($this->_name) . "', '" - . Util::sqlAddSlashes(json_encode($this->uiprefs)) . "')"; + . $GLOBALS['dbi']->escapeString($username) . "', '" . $secureDbName + . "', '" . $GLOBALS['dbi']->escapeString($this->_name) . "', '" + . $GLOBALS['dbi']->escapeString(json_encode($this->uiprefs)) . "')"; $success = $this->_dbi->tryQuery($sql_query, $GLOBALS['controllink']); @@ -1953,7 +1953,7 @@ class Table if (! empty($keyBlockSizes)) { $sql_query .= sprintf( ' KEY_BLOCK_SIZE = ', - Util::sqlAddSlashes($keyBlockSizes) + $GLOBALS['dbi']->escapeString($keyBlockSizes) ); } @@ -1968,14 +1968,14 @@ class Table $parser = $index->getParser(); if ($index->getChoice() == 'FULLTEXT' && ! empty($parser)) { - $sql_query .= ' WITH PARSER ' . Util::sqlAddSlashes($parser); + $sql_query .= ' WITH PARSER ' . $GLOBALS['dbi']->escapeString($parser); } $comment = $index->getComment(); if (! empty($comment)) { $sql_query .= sprintf( " COMMENT '%s'", - Util::sqlAddSlashes($comment) + $GLOBALS['dbi']->escapeString($comment) ); } @@ -2002,28 +2002,28 @@ class Table . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($cfgRelation['table_info']) . ' WHERE db_name = \'' - . Util::sqlAddSlashes($this->_db_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_db_name) . '\'' . ' AND table_name = \'' - . Util::sqlAddSlashes($this->_name) . '\''; + . $GLOBALS['dbi']->escapeString($this->_name) . '\''; } elseif ($disp != $display_field) { $upd_query = 'UPDATE ' . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($cfgRelation['table_info']) . ' SET display_field = \'' - . Util::sqlAddSlashes($display_field) . '\'' + . $GLOBALS['dbi']->escapeString($display_field) . '\'' . ' WHERE db_name = \'' - . Util::sqlAddSlashes($this->_db_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_db_name) . '\'' . ' AND table_name = \'' - . Util::sqlAddSlashes($this->_name) . '\''; + . $GLOBALS['dbi']->escapeString($this->_name) . '\''; } } elseif ($display_field != '') { $upd_query = 'INSERT INTO ' . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($cfgRelation['table_info']) . '(db_name, table_name, display_field) VALUES(' - . '\'' . Util::sqlAddSlashes($this->_db_name) . '\',' - . '\'' . Util::sqlAddSlashes($this->_name) . '\',' - . '\'' . Util::sqlAddSlashes($display_field) . '\')'; + . '\'' . $GLOBALS['dbi']->escapeString($this->_db_name) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($this->_name) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($display_field) . '\')'; } if ($upd_query) { @@ -2072,12 +2072,12 @@ class Table . '(master_db, master_table, master_field, foreign_db,' . ' foreign_table, foreign_field)' . ' values(' - . '\'' . Util::sqlAddSlashes($this->_db_name) . '\', ' - . '\'' . Util::sqlAddSlashes($this->_name) . '\', ' - . '\'' . Util::sqlAddSlashes($master_field) . '\', ' - . '\'' . Util::sqlAddSlashes($foreign_db) . '\', ' - . '\'' . Util::sqlAddSlashes($foreign_table) . '\',' - . '\'' . Util::sqlAddSlashes($foreign_field) . '\')'; + . '\'' . $GLOBALS['dbi']->escapeString($this->_db_name) . '\', ' + . '\'' . $GLOBALS['dbi']->escapeString($this->_name) . '\', ' + . '\'' . $GLOBALS['dbi']->escapeString($master_field) . '\', ' + . '\'' . $GLOBALS['dbi']->escapeString($foreign_db) . '\', ' + . '\'' . $GLOBALS['dbi']->escapeString($foreign_table) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($foreign_field) . '\')'; } elseif ($existrel[$master_field]['foreign_db'] != $foreign_db || $existrel[$master_field]['foreign_table'] != $foreign_table @@ -2087,28 +2087,28 @@ class Table . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($cfgRelation['relation']) . ' SET foreign_db = \'' - . Util::sqlAddSlashes($foreign_db) . '\', ' + . $GLOBALS['dbi']->escapeString($foreign_db) . '\', ' . ' foreign_table = \'' - . Util::sqlAddSlashes($foreign_table) . '\', ' + . $GLOBALS['dbi']->escapeString($foreign_table) . '\', ' . ' foreign_field = \'' - . Util::sqlAddSlashes($foreign_field) . '\' ' + . $GLOBALS['dbi']->escapeString($foreign_field) . '\' ' . ' WHERE master_db = \'' - . Util::sqlAddSlashes($this->_db_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_db_name) . '\'' . ' AND master_table = \'' - . Util::sqlAddSlashes($this->_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_name) . '\'' . ' AND master_field = \'' - . Util::sqlAddSlashes($master_field) . '\''; + . $GLOBALS['dbi']->escapeString($master_field) . '\''; } // end if... else.... } elseif (isset($existrel[$master_field])) { $upd_query = 'DELETE FROM ' . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($cfgRelation['relation']) . ' WHERE master_db = \'' - . Util::sqlAddSlashes($this->_db_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_db_name) . '\'' . ' AND master_table = \'' - . Util::sqlAddSlashes($this->_name) . '\'' + . $GLOBALS['dbi']->escapeString($this->_name) . '\'' . ' AND master_field = \'' - . Util::sqlAddSlashes($master_field) . '\''; + . $GLOBALS['dbi']->escapeString($master_field) . '\''; } // end if... else.... if (isset($upd_query)) { @@ -2390,10 +2390,10 @@ class Table FROM `information_schema`.`COLUMNS` WHERE - `TABLE_SCHEMA` = '" . Util::sqlAddSlashes($this->_db_name) . "' - AND `TABLE_NAME` = '" . Util::sqlAddSlashes($this->_name) . "'"; + `TABLE_SCHEMA` = '" . $GLOBALS['dbi']->escapeString($this->_db_name) . "' + AND `TABLE_NAME` = '" . $GLOBALS['dbi']->escapeString($this->_name) . "'"; if ($column != null) { - $sql .= " AND `COLUMN_NAME` = '" . Util::sqlAddSlashes($column) + $sql .= " AND `COLUMN_NAME` = '" . $GLOBALS['dbi']->escapeString($column) . "'"; } $columns = $this->_dbi->fetchResult($sql, 'Field', 'Expression'); diff --git a/libraries/Tracker.php b/libraries/Tracker.php index a4cb56c99f..8132503bfa 100644 --- a/libraries/Tracker.php +++ b/libraries/Tracker.php @@ -123,8 +123,8 @@ class Tracker } $sql_query = " SELECT tracking_active FROM " . self::_getTrackingTable() . - " WHERE db_name = '" . Util::sqlAddSlashes($dbname) . "' " . - " AND table_name = '" . Util::sqlAddSlashes($tablename) . "' " . + " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($dbname) . "' " . + " AND table_name = '" . $GLOBALS['dbi']->escapeString($tablename) . "' " . " ORDER BY version DESC"; $row = $GLOBALS['dbi']->fetchArray(PMA_queryAsControlUser($sql_query)); @@ -242,15 +242,15 @@ class Tracker "tracking " . ") " . "values ( - '" . Util::sqlAddSlashes($dbname) . "', - '" . Util::sqlAddSlashes($tablename) . "', - '" . Util::sqlAddSlashes($version) . "', - '" . Util::sqlAddSlashes($date) . "', - '" . Util::sqlAddSlashes($date) . "', - '" . Util::sqlAddSlashes($snapshot) . "', - '" . Util::sqlAddSlashes($create_sql) . "', - '" . Util::sqlAddSlashes("\n") . "', - '" . Util::sqlAddSlashes($tracking_set) + '" . $GLOBALS['dbi']->escapeString($dbname) . "', + '" . $GLOBALS['dbi']->escapeString($tablename) . "', + '" . $GLOBALS['dbi']->escapeString($version) . "', + '" . $GLOBALS['dbi']->escapeString($date) . "', + '" . $GLOBALS['dbi']->escapeString($date) . "', + '" . $GLOBALS['dbi']->escapeString($snapshot) . "', + '" . $GLOBALS['dbi']->escapeString($create_sql) . "', + '" . $GLOBALS['dbi']->escapeString("\n") . "', + '" . $GLOBALS['dbi']->escapeString($tracking_set) . "' )"; $result = PMA_queryAsControlUser($sql_query); @@ -280,12 +280,12 @@ class Tracker $sql_query = "/*NOTRACK*/\n" . "DELETE FROM " . self::_getTrackingTable() . " WHERE `db_name` = '" - . Util::sqlAddSlashes($dbname) . "'" + . $GLOBALS['dbi']->escapeString($dbname) . "'" . " AND `table_name` = '" - . Util::sqlAddSlashes($tablename) . "'"; + . $GLOBALS['dbi']->escapeString($tablename) . "'"; if ($version) { $sql_query .= " AND `version` = '" - . Util::sqlAddSlashes($version) . "'"; + . $GLOBALS['dbi']->escapeString($version) . "'"; } $result = PMA_queryAsControlUser($sql_query); @@ -338,15 +338,15 @@ class Tracker "tracking " . ") " . "values ( - '" . Util::sqlAddSlashes($dbname) . "', - '" . Util::sqlAddSlashes('') . "', - '" . Util::sqlAddSlashes($version) . "', - '" . Util::sqlAddSlashes($date) . "', - '" . Util::sqlAddSlashes($date) . "', - '" . Util::sqlAddSlashes('') . "', - '" . Util::sqlAddSlashes($create_sql) . "', - '" . Util::sqlAddSlashes("\n") . "', - '" . Util::sqlAddSlashes($tracking_set) + '" . $GLOBALS['dbi']->escapeString($dbname) . "', + '" . $GLOBALS['dbi']->escapeString('') . "', + '" . $GLOBALS['dbi']->escapeString($version) . "', + '" . $GLOBALS['dbi']->escapeString($date) . "', + '" . $GLOBALS['dbi']->escapeString($date) . "', + '" . $GLOBALS['dbi']->escapeString('') . "', + '" . $GLOBALS['dbi']->escapeString($create_sql) . "', + '" . $GLOBALS['dbi']->escapeString("\n") . "', + '" . $GLOBALS['dbi']->escapeString($tracking_set) . "' )"; $result = PMA_queryAsControlUser($sql_query); @@ -374,9 +374,9 @@ class Tracker $sql_query = " UPDATE " . self::_getTrackingTable() . " SET `tracking_active` = '" . $new_state . "' " . - " WHERE `db_name` = '" . Util::sqlAddSlashes($dbname) . "' " . - " AND `table_name` = '" . Util::sqlAddSlashes($tablename) . "' " . - " AND `version` = '" . Util::sqlAddSlashes($version) . "' "; + " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($dbname) . "' " . + " AND `table_name` = '" . $GLOBALS['dbi']->escapeString($tablename) . "' " . + " AND `version` = '" . $GLOBALS['dbi']->escapeString($version) . "' "; $result = PMA_queryAsControlUser($sql_query); @@ -412,7 +412,7 @@ class Tracker if (is_array($new_data)) { foreach ($new_data as $data) { $new_data_processed .= '# log ' . $date . ' ' . $data['username'] - . Util::sqlAddSlashes($data['statement']) . "\n"; + . $GLOBALS['dbi']->escapeString($data['statement']) . "\n"; } } else { $new_data_processed = $new_data; @@ -420,9 +420,9 @@ class Tracker $sql_query = " UPDATE " . self::_getTrackingTable() . " SET `" . $save_to . "` = '" . $new_data_processed . "' " . - " WHERE `db_name` = '" . Util::sqlAddSlashes($dbname) . "' " . - " AND `table_name` = '" . Util::sqlAddSlashes($tablename) . "' " . - " AND `version` = '" . Util::sqlAddSlashes($version) . "' "; + " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($dbname) . "' " . + " AND `table_name` = '" . $GLOBALS['dbi']->escapeString($tablename) . "' " . + " AND `version` = '" . $GLOBALS['dbi']->escapeString($version) . "' "; $result = PMA_queryAsControlUser($sql_query); @@ -478,8 +478,8 @@ class Tracker static public function getVersion($dbname, $tablename, $statement = null) { $sql_query = " SELECT MAX(version) FROM " . self::_getTrackingTable() . - " WHERE `db_name` = '" . Util::sqlAddSlashes($dbname) . "' " . - " AND `table_name` = '" . Util::sqlAddSlashes($tablename) . "' "; + " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($dbname) . "' " . + " AND `table_name` = '" . $GLOBALS['dbi']->escapeString($tablename) . "' "; if ($statement != "") { $sql_query .= " AND FIND_IN_SET('" @@ -507,12 +507,12 @@ class Tracker static public function getTrackedData($dbname, $tablename, $version) { $sql_query = " SELECT * FROM " . self::_getTrackingTable() . - " WHERE `db_name` = '" . Util::sqlAddSlashes($dbname) . "' "; + " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($dbname) . "' "; if (! empty($tablename)) { $sql_query .= " AND `table_name` = '" - . Util::sqlAddSlashes($tablename) . "' "; + . $GLOBALS['dbi']->escapeString($tablename) . "' "; } - $sql_query .= " AND `version` = '" . Util::sqlAddSlashes($version) + $sql_query .= " AND `version` = '" . $GLOBALS['dbi']->escapeString($version) . "' " . " ORDER BY `version` DESC LIMIT 1"; $mixed = $GLOBALS['dbi']->fetchAssoc(PMA_queryAsControlUser($sql_query)); @@ -916,14 +916,14 @@ class Tracker . " UPDATE " . self::_getTrackingTable() . " SET " . Util::backquote($save_to) . " = CONCAT( " . Util::backquote($save_to) . ",'\n" - . Util::sqlAddSlashes($query) . "') ," + . $GLOBALS['dbi']->escapeString($query) . "') ," . " `date_updated` = '" . $date . "' "; // If table was renamed we have to change // the tablename attribute in pma_tracking too if ($result['identifier'] == 'RENAME TABLE') { $sql_query .= ', `table_name` = \'' - . Util::sqlAddSlashes($result['tablename_after_rename']) + . $GLOBALS['dbi']->escapeString($result['tablename_after_rename']) . '\' '; } @@ -934,10 +934,10 @@ class Tracker // we want to track $sql_query .= " WHERE FIND_IN_SET('" . $result['identifier'] . "',tracking) > 0" . - " AND `db_name` = '" . Util::sqlAddSlashes($dbname) . "' " . + " AND `db_name` = '" . $GLOBALS['dbi']->escapeString($dbname) . "' " . " AND `table_name` = '" - . Util::sqlAddSlashes($result['tablename']) . "' " . - " AND `version` = '" . Util::sqlAddSlashes($version) . "' "; + . $GLOBALS['dbi']->escapeString($result['tablename']) . "' " . + " AND `version` = '" . $GLOBALS['dbi']->escapeString($version) . "' "; PMA_queryAsControlUser($sql_query); } diff --git a/libraries/Util.php b/libraries/Util.php index 27d83f2276..a53eff10cf 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -2337,7 +2337,7 @@ class Util . self::printableBitValue($row[$i], $meta->length) . "'"; } else { $con_val = '= \'' - . self::sqlAddSlashes($row[$i], false, true) . '\''; + . $GLOBALS['dbi']->escapeString($row[$i]) . '\''; } } @@ -4161,7 +4161,7 @@ class Util 'SCHEMA_PRIVILEGES', $username, $priv, - self::sqlAddSlashes($db) + $GLOBALS['dbi']->escapeString($db) ) ); if ($schema_privileges) { @@ -4184,8 +4184,8 @@ class Util 'TABLE_PRIVILEGES', $username, $priv, - self::sqlAddSlashes($db), - self::sqlAddSlashes($tbl) + $GLOBALS['dbi']->escapeString($db), + $GLOBALS['dbi']->escapeString($tbl) ) ); if ($table_privileges) { @@ -4942,7 +4942,7 @@ class Util if (! isset($sot_cache[$tmp[0]])) { $sts_result = $GLOBALS['dbi']->query( "SHOW TABLE STATUS FROM " . Util::backquote($db) - . " LIKE '" . Util::sqlAddSlashes($tmp[0], true) + . " LIKE '" . $GLOBALS['dbi']->escapeString($tmp[0]) . "';" ); $sts_tmp = $GLOBALS['dbi']->fetchAssoc($sts_result); diff --git a/libraries/bookmark.lib.php b/libraries/bookmark.lib.php index e383086335..872b0da2e0 100644 --- a/libraries/bookmark.lib.php +++ b/libraries/bookmark.lib.php @@ -64,8 +64,8 @@ function PMA_Bookmark_getList($db = false) $query = 'SELECT query, label, id FROM ' . PMA\libraries\Util::backquote( $cfgBookmark['db'] ) . '.' . PMA\libraries\Util::backquote($cfgBookmark['table']) - . ' WHERE dbase = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND user = \'' . PMA\libraries\Util::sqlAddSlashes($cfgBookmark['user']) + . ' WHERE dbase = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND user = \'' . $GLOBALS['dbi']->escapeString($cfgBookmark['user']) . '\'' . ' ORDER BY label'; $per_user = $GLOBALS['dbi']->fetchResult( @@ -79,7 +79,7 @@ function PMA_Bookmark_getList($db = false) $query = 'SELECT query, label, id FROM ' . PMA\libraries\Util::backquote( $cfgBookmark['db'] ) . '.' . PMA\libraries\Util::backquote($cfgBookmark['table']) - . ' WHERE dbase = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' + . ' WHERE dbase = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' . ' AND user = \'\'' . ' ORDER BY label'; $global = $GLOBALS['dbi']->fetchResult( @@ -103,7 +103,7 @@ function PMA_Bookmark_getList($db = false) . " FROM " . PMA\libraries\Util::backquote($cfgBookmark['db']) . "." . PMA\libraries\Util::backquote($cfgBookmark['table']) . " WHERE `user` = '' OR" - . " `user` = '" . PMA\libraries\Util::sqlAddSlashes($cfgBookmark['user']) + . " `user` = '" . $GLOBALS['dbi']->escapeString($cfgBookmark['user']) . "'"; $ret = $GLOBALS['dbi']->fetchResult( @@ -149,11 +149,11 @@ function PMA_Bookmark_get($db, $id, $id_field = 'id', $action_bookmark_all = fal $query = 'SELECT query FROM ' . PMA\libraries\Util::backquote($cfgBookmark['db']) . '.' . PMA\libraries\Util::backquote($cfgBookmark['table']) - . ' WHERE dbase = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE dbase = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; if (! $action_bookmark_all) { $query .= ' AND (user = \'' - . PMA\libraries\Util::sqlAddSlashes($cfgBookmark['user']) . '\''; + . $GLOBALS['dbi']->escapeString($cfgBookmark['user']) . '\''; if (! $exact_user_match) { $query .= ' OR user = \'\''; } @@ -195,18 +195,18 @@ function PMA_Bookmark_save($bkm_fields, $all_users = false) . '.' . PMA\libraries\Util::backquote($cfgBookmark['table']) . ' (id, dbase, user, query, label)' . ' VALUES (NULL, \'' - . PMA\libraries\Util::sqlAddSlashes($bkm_fields['bkm_database']) . '\', ' + . $GLOBALS['dbi']->escapeString($bkm_fields['bkm_database']) . '\', ' . '\'' . ($all_users ? '' - : PMA\libraries\Util::sqlAddSlashes( + : $GLOBALS['dbi']->escapeString( $bkm_fields['bkm_user'] )) . '\', ' . '\'' - . PMA\libraries\Util::sqlAddSlashes($bkm_fields['bkm_sql_query']) + . $GLOBALS['dbi']->escapeString($bkm_fields['bkm_sql_query']) . '\', ' - . '\'' . PMA\libraries\Util::sqlAddSlashes($bkm_fields['bkm_label']) . '\')'; + . '\'' . $GLOBALS['dbi']->escapeString($bkm_fields['bkm_label']) . '\')'; return $GLOBALS['dbi']->query($query, $controllink); } // end of the 'PMA_Bookmark_save()' function @@ -235,7 +235,7 @@ function PMA_Bookmark_delete($id) $query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgBookmark['db']) . '.' . PMA\libraries\Util::backquote($cfgBookmark['table']) . ' WHERE (user = \'' - . PMA\libraries\Util::sqlAddSlashes($cfgBookmark['user']) . '\'' + . $GLOBALS['dbi']->escapeString($cfgBookmark['user']) . '\'' . ' OR user = \'\')' . ' AND id = ' . $id; return $GLOBALS['dbi']->tryQuery($query, $controllink); @@ -275,7 +275,7 @@ function PMA_Bookmark_applyVariables($query) for ($i = 1; $i <= $number_of_variables; $i++) { $var = ''; if (! empty($_REQUEST['bookmark_variable'][$i])) { - $var = PMA\libraries\Util::sqlAddSlashes( + $var = $GLOBALS['dbi']->escapeString( $_REQUEST['bookmark_variable'][$i] ); } diff --git a/libraries/central_columns.lib.php b/libraries/central_columns.lib.php index 6306e3f403..ea8012fbe8 100644 --- a/libraries/central_columns.lib.php +++ b/libraries/central_columns.lib.php @@ -60,10 +60,10 @@ function PMA_getColumnsList($db, $from=0, $num=25) //get current values of $db from central column list if ($num == 0) { $query = 'SELECT * FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\';'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\';'; } else { $query = 'SELECT * FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\' ' + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\' ' . 'LIMIT ' . $from . ', ' . $num . ';'; } $has_list = (array) $GLOBALS['dbi']->fetchResult( @@ -91,7 +91,7 @@ function PMA_getCentralColumnsCount($db) $central_list_table = $cfgCentralColumns['table']; $query = 'SELECT count(db_name) FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\';'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\';'; $res = $GLOBALS['dbi']->fetchResult( $query, null, null, $GLOBALS['controllink'] ); @@ -122,7 +122,7 @@ function PMA_findExistingColNames($db, $cols, $allFields=false) $central_list_table = $cfgCentralColumns['table']; if ($allFields) { $query = 'SELECT * FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\' AND col_name IN (' . $cols . ');'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\' AND col_name IN (' . $cols . ');'; $has_list = (array) $GLOBALS['dbi']->fetchResult( $query, null, null, $GLOBALS['controllink'] ); @@ -130,7 +130,7 @@ function PMA_findExistingColNames($db, $cols, $allFields=false) } else { $query = 'SELECT col_name FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\' AND col_name IN (' . $cols . ');'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\' AND col_name IN (' . $cols . ');'; $has_list = (array) $GLOBALS['dbi']->fetchResult( $query, null, null, $GLOBALS['controllink'] ); @@ -187,14 +187,14 @@ function PMA_getInsertQuery($column, $def, $db, $central_list_table) $default = isset($def['Default'])?$def['Default']:""; $insQuery = 'INSERT INTO ' . Util::backquote($central_list_table) . ' ' - . 'VALUES ( \'' . Util::sqlAddSlashes($db) . '\' ,' - . '\'' . Util::sqlAddSlashes($column) . '\',\'' - . Util::sqlAddSlashes($type) . '\',' - . '\'' . Util::sqlAddSlashes($length) . '\',\'' - . Util::sqlAddSlashes($collation) . '\',' - . '\'' . Util::sqlAddSlashes($isNull) . '\',' + . 'VALUES ( \'' . $GLOBALS['dbi']->escapeString($db) . '\' ,' + . '\'' . $GLOBALS['dbi']->escapeString($column) . '\',\'' + . $GLOBALS['dbi']->escapeString($type) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($length) . '\',\'' + . $GLOBALS['dbi']->escapeString($collation) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($isNull) . '\',' . '\'' . implode(',', array($extra, $attribute)) - . '\',\'' . Util::sqlAddSlashes($default) . '\');'; + . '\',\'' . $GLOBALS['dbi']->escapeString($default) . '\');'; return $insQuery; } @@ -232,7 +232,7 @@ function PMA_syncUniqueColumns($field_select, $isTable=true, $table=null) $db, $table, null, true, $GLOBALS['userlink'] ); foreach ($fields[$table] as $field => $def) { - $cols .= "'" . Util::sqlAddSlashes($field) . "',"; + $cols .= "'" . $GLOBALS['dbi']->escapeString($field) . "',"; } } @@ -254,7 +254,7 @@ function PMA_syncUniqueColumns($field_select, $isTable=true, $table=null) $table = $_REQUEST['table']; } foreach ($field_select as $column) { - $cols .= "'" . Util::sqlAddSlashes($column) . "',"; + $cols .= "'" . $GLOBALS['dbi']->escapeString($column) . "',"; } $has_list = PMA_findExistingColNames($db, trim($cols, ',')); foreach ($field_select as $column) { @@ -336,7 +336,7 @@ function PMA_deleteColumnsFromList($field_select, $isTable=true) $db, $table, $GLOBALS['userlink'] ); foreach ($fields[$table] as $col_select) { - $cols .= '\'' . Util::sqlAddSlashes($col_select) . '\','; + $cols .= '\'' . $GLOBALS['dbi']->escapeString($col_select) . '\','; } } $cols = trim($cols, ','); @@ -352,7 +352,7 @@ function PMA_deleteColumnsFromList($field_select, $isTable=true) } else { $cols = ''; foreach ($field_select as $col_select) { - $cols .= '\'' . Util::sqlAddSlashes($col_select) . '\','; + $cols .= '\'' . $GLOBALS['dbi']->escapeString($col_select) . '\','; } $cols = trim($cols, ','); $has_list = PMA_findExistingColNames($db, $cols); @@ -376,7 +376,7 @@ function PMA_deleteColumnsFromList($field_select, $isTable=true) $GLOBALS['dbi']->selectDb($pmadb, $GLOBALS['controllink']); $query = 'DELETE FROM ' . Util::backquote($central_list_table) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\' AND col_name IN (' . $cols . ');'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\' AND col_name IN (' . $cols . ');'; if (!$GLOBALS['dbi']->tryQuery($query, $GLOBALS['controllink'])) { $message = Message::error(__('Could not remove columns!')); @@ -414,7 +414,7 @@ function PMA_makeConsistentWithList($db, $selected_tables) //it is not referenced by another column if ($column_status['isEditable']) { $query .= ' MODIFY ' . Util::backquote($column['col_name']) . ' ' - . Util::sqlAddSlashes($column['col_type']); + . $GLOBALS['dbi']->escapeString($column['col_type']); if ($column['col_length']) { $query .= '(' . $column['col_length'] . ')'; } @@ -429,11 +429,11 @@ function PMA_makeConsistentWithList($db, $selected_tables) $query .= ' ' . $column['col_extra']; if ($column['col_default']) { if ($column['col_default'] != 'CURRENT_TIMESTAMP') { - $query .= ' DEFAULT \'' . Util::sqlAddSlashes( + $query .= ' DEFAULT \'' . $GLOBALS['dbi']->escapeString( $column['col_default'] ) . '\''; } else { - $query .= ' DEFAULT ' . Util::sqlAddSlashes( + $query .= ' DEFAULT ' . $GLOBALS['dbi']->escapeString( $column['col_default'] ); } @@ -481,7 +481,7 @@ function PMA_getCentralColumnsFromTable($db, $table, $allFields=false) ); $cols = ''; foreach ($fields as $col_select) { - $cols .= '\'' . Util::sqlAddSlashes($col_select) . '\','; + $cols .= '\'' . $GLOBALS['dbi']->escapeString($col_select) . '\','; } $cols = trim($cols, ','); $has_list = PMA_findExistingColNames($db, $cols, $allFields); @@ -531,16 +531,16 @@ function PMA_updateOneColumn($db, $orig_col_name, $col_name, $col_type, $query = PMA_getInsertQuery($col_name, $def, $db, $centralTable); } else { $query = 'UPDATE ' . Util::backquote($centralTable) - . ' SET col_type = \'' . Util::sqlAddSlashes($col_type) . '\'' - . ', col_name = \'' . Util::sqlAddSlashes($col_name) . '\'' - . ', col_length = \'' . Util::sqlAddSlashes($col_length) . '\'' + . ' SET col_type = \'' . $GLOBALS['dbi']->escapeString($col_type) . '\'' + . ', col_name = \'' . $GLOBALS['dbi']->escapeString($col_name) . '\'' + . ', col_length = \'' . $GLOBALS['dbi']->escapeString($col_length) . '\'' . ', col_isNull = ' . $col_isNull - . ', col_collation = \'' . Util::sqlAddSlashes($collation) . '\'' + . ', col_collation = \'' . $GLOBALS['dbi']->escapeString($collation) . '\'' . ', col_extra = \'' . implode(',', array($col_extra, $col_attribute)) . '\'' - . ', col_default = \'' . Util::sqlAddSlashes($col_default) . '\'' - . ' WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\' ' - . 'AND col_name = \'' . Util::sqlAddSlashes($orig_col_name) + . ', col_default = \'' . $GLOBALS['dbi']->escapeString($col_default) . '\'' + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\' ' + . 'AND col_name = \'' . $GLOBALS['dbi']->escapeString($orig_col_name) . '\''; } if (!$GLOBALS['dbi']->tryQuery($query, $GLOBALS['controllink'])) { @@ -1147,7 +1147,7 @@ function PMA_getCentralColumnsListRaw($db, $table) $centralTable = $cfgCentralColumns['table']; if (empty($table) || $table == '') { $query = 'SELECT * FROM ' . Util::backquote($centralTable) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\';'; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\';'; } else { $GLOBALS['dbi']->selectDb($db, $GLOBALS['userlink']); $columns = (array) $GLOBALS['dbi']->getColumnNames( @@ -1155,11 +1155,11 @@ function PMA_getCentralColumnsListRaw($db, $table) ); $cols = ''; foreach ($columns as $col_select) { - $cols .= '\'' . Util::sqlAddSlashes($col_select) . '\','; + $cols .= '\'' . $GLOBALS['dbi']->escapeString($col_select) . '\','; } $cols = trim($cols, ','); $query = 'SELECT * FROM ' . Util::backquote($centralTable) . ' ' - . 'WHERE db_name = \'' . Util::sqlAddSlashes($db) . '\''; + . 'WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; if ($cols) { $query .= ' AND col_name NOT IN (' . $cols . ')'; } @@ -1383,7 +1383,7 @@ function PMA_getHTMLforEditingPage($selected_fld,$selected_db) $html .= PMA_getCentralColumnsEditTableHeader($header_cells); $selected_fld_safe = array(); foreach ($selected_fld as $key) { - $selected_fld_safe[] = Util::sqlAddSlashes($key); + $selected_fld_safe[] = $GLOBALS['dbi']->escapeString($key); } $columns_list = implode("','", $selected_fld_safe); $columns_list = "'" . $columns_list . "'"; diff --git a/libraries/common.inc.php b/libraries/common.inc.php index ccd8119d53..8a2cbbf8de 100644 --- a/libraries/common.inc.php +++ b/libraries/common.inc.php @@ -877,7 +877,7 @@ if (! defined('PMA_MINIMUM_COMMON')) { if ($cfg['Server']['SessionTimeZone'] != '') { $sql_query_tz = 'SET ' . Util::backquote('time_zone') . ' = ' . '\'' - . Util::sqlAddSlashes($cfg['Server']['SessionTimeZone']) + . $GLOBALS['dbi']->escapeString($cfg['Server']['SessionTimeZone']) . '\''; if (! $userlink->query($sql_query_tz)) { diff --git a/libraries/controllers/server/ServerVariablesController.php b/libraries/controllers/server/ServerVariablesController.php index 1e2a2ef2cb..2572eb997f 100644 --- a/libraries/controllers/server/ServerVariablesController.php +++ b/libraries/controllers/server/ServerVariablesController.php @@ -134,7 +134,7 @@ class ServerVariablesController extends Controller // when server is running in ANSI_QUOTES sql_mode $varValue = $this->dbi->fetchSingleRow( 'SHOW GLOBAL VARIABLES WHERE Variable_name=\'' - . Util::sqlAddSlashes($_REQUEST['varName']) . '\';', + . $GLOBALS['dbi']->escapeString($_REQUEST['varName']) . '\';', 'NUM' ); @@ -186,7 +186,7 @@ class ServerVariablesController extends Controller $exp[mb_strtolower($matches[3])] ); } else { - $value = Util::sqlAddSlashes($value); + $value = $GLOBALS['dbi']->escapeString($value); } if (! is_numeric($value)) { @@ -201,7 +201,7 @@ class ServerVariablesController extends Controller // Some values are rounded down etc. $varValue = $this->dbi->fetchSingleRow( 'SHOW GLOBAL VARIABLES WHERE Variable_name="' - . Util::sqlAddSlashes($_REQUEST['varName']) + . $GLOBALS['dbi']->escapeString($_REQUEST['varName']) . '";', 'NUM' ); $this->response->addJSON( diff --git a/libraries/controllers/table/TableSearchController.php b/libraries/controllers/table/TableSearchController.php index 134cace445..2166585ce1 100644 --- a/libraries/controllers/table/TableSearchController.php +++ b/libraries/controllers/table/TableSearchController.php @@ -716,7 +716,7 @@ class TableSearchController extends TableController . " FROM " . Util::backquote($this->db) . "." . Util::backquote($this->table) . " WHERE " . Util::backquote($column) - . " RLIKE '" . Util::sqlAddSlashes($find) . "' COLLATE " + . " RLIKE '" . $GLOBALS['dbi']->escapeString($find) . "' COLLATE " . $charSet . "_bin"; // here we // change the collation of the 2nd operand to a case sensitive // binary collation to make sure that the comparison is case sensitive @@ -774,13 +774,13 @@ class TableSearchController extends TableController if (is_array($toReplace)) { foreach ($toReplace as $row) { $sql_query .= "\n WHEN " . Util::backquote($column) - . " = '" . Util::sqlAddSlashes($row[0]) - . "' THEN '" . Util::sqlAddSlashes($row[1]) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($row[0]) + . "' THEN '" . $GLOBALS['dbi']->escapeString($row[1]) . "'"; } } $sql_query .= " END" . " WHERE " . Util::backquote($column) - . " RLIKE '" . Util::sqlAddSlashes($find) . "' COLLATE " + . " RLIKE '" . $GLOBALS['dbi']->escapeString($find) . "' COLLATE " . $charSet . "_bin"; // here we // change the collation of the 2nd operand to a case sensitive // binary collation to make sure that the comparison @@ -1034,10 +1034,10 @@ class TableSearchController extends TableController $parens_close = ''; } $enum_where = '\'' - . Util::sqlAddSlashes($criteriaValues[0]) . '\''; + . $GLOBALS['dbi']->escapeString($criteriaValues[0]) . '\''; for ($e = 1; $e < $enum_selected_count; $e++) { $enum_where .= ', \'' - . Util::sqlAddSlashes($criteriaValues[$e]) . '\''; + . $GLOBALS['dbi']->escapeString($criteriaValues[$e]) . '\''; } return ' ' . $func_type . ' ' . $parens_open @@ -1163,7 +1163,7 @@ class TableSearchController extends TableController && 'NOT BETWEEN' != $func_type ) { return $backquoted_name . ' ' . $func_type . ' ' . $quot - . Util::sqlAddSlashes($criteriaValues) . $quot; + . $GLOBALS['dbi']->escapeString($criteriaValues) . $quot; } $func_type = str_replace(' (...)', '', $func_type); @@ -1182,7 +1182,7 @@ class TableSearchController extends TableController $value = 'NULL'; continue; } - $value = $quot . Util::sqlAddSlashes(trim($value)) + $value = $quot . $GLOBALS['dbi']->escapeString(trim($value)) . $quot; } diff --git a/libraries/controllers/table/TableStructureController.php b/libraries/controllers/table/TableStructureController.php index 96d9d59358..86105d51a3 100644 --- a/libraries/controllers/table/TableStructureController.php +++ b/libraries/controllers/table/TableStructureController.php @@ -1211,8 +1211,8 @@ class TableStructureController extends TableController FROM `INFORMATION_SCHEMA`.`VIEWS` WHERE TABLE_SCHEMA='%s' AND TABLE_NAME='%s';", - Util::sqlAddSlashes($this->db), - Util::sqlAddSlashes($this->table) + $GLOBALS['dbi']->escapeString($this->db), + $GLOBALS['dbi']->escapeString($this->table) ) ); diff --git a/libraries/create_addfield.lib.php b/libraries/create_addfield.lib.php index c44e5a7aa7..4eb649f520 100644 --- a/libraries/create_addfield.lib.php +++ b/libraries/create_addfield.lib.php @@ -166,7 +166,7 @@ function PMA_buildIndexStatements($index, $index_choice, $keyBlockSizes = $index['Key_block_size']; if (! empty($keyBlockSizes)) { $sql_query .= " KEY_BLOCK_SIZE = " - . PMA\libraries\Util::sqlAddSlashes($keyBlockSizes); + . $GLOBALS['dbi']->escapeString($keyBlockSizes); } // specifying index type is allowed only for primary, unique and index only @@ -180,12 +180,12 @@ function PMA_buildIndexStatements($index, $index_choice, $parser = $index['Parser']; if ($index['Index_choice'] == 'FULLTEXT' && ! empty($parser)) { - $sql_query .= " WITH PARSER " . PMA\libraries\Util::sqlAddSlashes($parser); + $sql_query .= " WITH PARSER " . $GLOBALS['dbi']->escapeString($parser); } $comment = $index['Index_comment']; if (! empty($comment)) { - $sql_query .= " COMMENT '" . PMA\libraries\Util::sqlAddSlashes($comment) + $sql_query .= " COMMENT '" . $GLOBALS['dbi']->escapeString($comment) . "'"; } @@ -424,11 +424,11 @@ function PMA_getTableCreationQuery($db, $table) && $_REQUEST['tbl_storage_engine'] == 'FEDERATED' ) { $sql_query .= " CONNECTION = '" - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['connection']) . "'"; + . $GLOBALS['dbi']->escapeString($_REQUEST['connection']) . "'"; } if (!empty($_REQUEST['comment'])) { $sql_query .= ' COMMENT = \'' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['comment']) . '\''; + . $GLOBALS['dbi']->escapeString($_REQUEST['comment']) . '\''; } $sql_query .= PMA_getPartitionsDefinition(); $sql_query .= ';'; diff --git a/libraries/db_designer.lib.php b/libraries/db_designer.lib.php index bf52111d59..10d8095782 100644 --- a/libraries/db_designer.lib.php +++ b/libraries/db_designer.lib.php @@ -82,7 +82,7 @@ function PMA_getPageIdsAndNames($db) $page_query = "SELECT `page_nr`, `page_descr` FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) - . " WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($db) . "'" + . " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($db) . "'" . " ORDER BY `page_descr`"; $page_rs = PMA_queryAsControlUser( $page_query, false, PMA\libraries\DatabaseInterface::QUERY_STORE diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php index 4cdeb1d48a..48af281128 100644 --- a/libraries/db_table_exists.lib.php +++ b/libraries/db_table_exists.lib.php @@ -62,7 +62,7 @@ if (empty($is_table) if (! $is_table) { $_result = $GLOBALS['dbi']->tryQuery( 'SHOW TABLES LIKE \'' - . PMA\libraries\Util::sqlAddSlashes($table, true) . '\';', + . $GLOBALS['dbi']->escapeString($table, true) . '\';', null, PMA\libraries\DatabaseInterface::QUERY_STORE ); $is_table = @$GLOBALS['dbi']->numRows($_result); diff --git a/libraries/dbi/DBIDummy.php b/libraries/dbi/DBIDummy.php index 36059217bf..d8f108aabc 100644 --- a/libraries/dbi/DBIDummy.php +++ b/libraries/dbi/DBIDummy.php @@ -1256,4 +1256,17 @@ class DBIDummy implements DBIExtension { return ''; } + + /** + * returns properly escaped string for use in MySQL queries + * + * @param mixed $link database link + * @param string $str string to be escaped + * + * @return string a MySQL escaped string + */ + public function escapeString($link, $str) + { + return $str; + } } diff --git a/libraries/dbi/DBIExtension.php b/libraries/dbi/DBIExtension.php index eaa93caa64..3a5eb7de77 100644 --- a/libraries/dbi/DBIExtension.php +++ b/libraries/dbi/DBIExtension.php @@ -235,4 +235,14 @@ interface DBIExtension * @return string field flags */ public function fieldFlags($result, $i); + + /** + * returns properly escaped string for use in MySQL queries + * + * @param mixed $link database link + * @param string $str string to be escaped + * + * @return string a MySQL escaped string + */ + public function escapeString($link, $str); } diff --git a/libraries/dbi/DBIMysql.php b/libraries/dbi/DBIMysql.php index b5763df63a..e274b90899 100644 --- a/libraries/dbi/DBIMysql.php +++ b/libraries/dbi/DBIMysql.php @@ -471,4 +471,17 @@ class DBIMysql implements DBIExtension { return false; } + + /** + * returns properly escaped string for use in MySQL queries + * + * @param mixed $link database link + * @param string $str string to be escaped + * + * @return string a MySQL escaped string + */ + public function escapeString($link, $str) + { + return mysql_real_escape_string($str, $link); + } } diff --git a/libraries/dbi/DBIMysqli.php b/libraries/dbi/DBIMysqli.php index f310d9c85b..0769b73999 100644 --- a/libraries/dbi/DBIMysqli.php +++ b/libraries/dbi/DBIMysqli.php @@ -615,4 +615,17 @@ class DBIMysqli implements DBIExtension } return implode(' ', $flags); } + + /** + * returns properly escaped string for use in MySQL queries + * + * @param mixed $link database link + * @param string $str string to be escaped + * + * @return string a MySQL escaped string + */ + public function escapeString($link, $str) + { + return mysqli_real_escape_string($link, $str); + } } diff --git a/libraries/display_export.lib.php b/libraries/display_export.lib.php index 1032a6a239..d0b55cc521 100644 --- a/libraries/display_export.lib.php +++ b/libraries/display_export.lib.php @@ -249,8 +249,8 @@ function PMA_getOptionsForExportTemplates($export_type) . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['export_templates']) . " WHERE `username` = " - . "'" . PMA\libraries\Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) - . "' AND `export_type` = '" . PMA\libraries\Util::sqlAddSlashes($export_type) . "'" + . "'" . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) + . "' AND `export_type` = '" . $GLOBALS['dbi']->escapeString($export_type) . "'" . " ORDER BY `template_name`;"; $result = PMA_queryAsControlUser($query); @@ -1113,14 +1113,14 @@ function PMA_getExportDisplay( function PMA_handleExportTemplateActions($cfgRelation) { if (isset($_REQUEST['templateId'])) { - $id = PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateId']); + $id = $GLOBALS['dbi']->escapeString($_REQUEST['templateId']); } else { $id = ''; } $templateTable = PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['export_templates']); - $user = PMA\libraries\Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']); + $user = $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']); switch ($_REQUEST['templateAction']) { case 'create': @@ -1129,9 +1129,9 @@ function PMA_handleExportTemplateActions($cfgRelation) . " `template_name`, `template_data`" . ") VALUES (" . "'" . $user . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['exportType']) - . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateName']) - . "', '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['exportType']) + . "', '" . $GLOBALS['dbi']->escapeString($_REQUEST['templateName']) + . "', '" . $GLOBALS['dbi']->escapeString($_REQUEST['templateData']) . "');"; break; case 'load': @@ -1140,7 +1140,7 @@ function PMA_handleExportTemplateActions($cfgRelation) break; case 'update': $query = "UPDATE " . $templateTable . " SET `template_data` = " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['templateData']) . "'" + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['templateData']) . "'" . " WHERE `id` = " . $id . " AND `username` = '" . $user . "'"; break; case 'delete': diff --git a/libraries/export.lib.php b/libraries/export.lib.php index e432d1ceb8..d8b3fa1bda 100644 --- a/libraries/export.lib.php +++ b/libraries/export.lib.php @@ -655,8 +655,8 @@ function PMA_exportDatabase( // This obtains the current table's size $query = 'SELECT data_length + index_length from information_schema.TABLES - WHERE table_schema = "' . PMA\libraries\Util::sqlAddSlashes($db) . '" - AND table_name = "' . PMA\libraries\Util::sqlAddSlashes($table) . '"'; + WHERE table_schema = "' . $GLOBALS['dbi']->escapeString($db) . '" + AND table_name = "' . $GLOBALS['dbi']->escapeString($table) . '"'; $size = $GLOBALS['dbi']->fetchValue($query); //Converting the size to MB diff --git a/libraries/import.lib.php b/libraries/import.lib.php index 9994fbb04f..ad6402247a 100644 --- a/libraries/import.lib.php +++ b/libraries/import.lib.php @@ -1144,7 +1144,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = null, } $tempSQLStr .= (($is_varchar) ? "'" : ""); - $tempSQLStr .= PMA\libraries\Util::sqlAddSlashes( + $tempSQLStr .= $GLOBALS['dbi']->escapeString( (string) $tables[$i][ROWS][$j][$k] ); $tempSQLStr .= (($is_varchar) ? "'" : ""); diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 2fca16a83e..c11d599b60 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -2255,7 +2255,7 @@ function PMA_getCurrentValueAsAnArrayForMultipleEdit( $multi_edit_funcs, || $multi_edit_funcs[$key] == "ENCRYPT")) ) { return $multi_edit_funcs[$key] . '(' . $current_value . ",'" - . PMA\libraries\Util::sqlAddSlashes($multi_edit_salt[$key]) . "')"; + . $GLOBALS['dbi']->escapeString($multi_edit_salt[$key]) . "')"; } else { return $multi_edit_funcs[$key] . '(' . $current_value . ')'; } @@ -2314,7 +2314,7 @@ function PMA_getQueryValuesForInsertAndUpdateInMultipleEdit($multi_edit_columns_ . ' = ' . $current_value_as_an_array; } elseif (empty($multi_edit_funcs[$key]) && isset($multi_edit_columns_prev[$key]) - && (("'" . PMA\libraries\Util::sqlAddSlashes($multi_edit_columns_prev[$key]) . "'" === $current_value) + && (("'" . $GLOBALS['dbi']->escapeString($multi_edit_columns_prev[$key]) . "'" === $current_value) || ('0x' . $multi_edit_columns_prev[$key] === $current_value)) ) { // No change for this column and no MySQL function is used -> next column @@ -2373,7 +2373,7 @@ function PMA_getCurrentValueForDifferentTypes($possibly_uploaded_val, $key, if (false !== $possibly_uploaded_val) { $current_value = $possibly_uploaded_val; } else if (! empty($multi_edit_funcs[$key])) { - $current_value = "'" . PMA\libraries\Util::sqlAddSlashes($current_value) + $current_value = "'" . $GLOBALS['dbi']->escapeString($current_value) . "'"; } else { // c o l u m n v a l u e i n t h e f o r m @@ -2401,7 +2401,7 @@ function PMA_getCurrentValueForDifferentTypes($possibly_uploaded_val, $key, ',', $_REQUEST['fields']['multi_edit'][$rownumber][$key] ); $current_value = "'" - . PMA\libraries\Util::sqlAddSlashes($current_value) . "'"; + . $GLOBALS['dbi']->escapeString($current_value) . "'"; } else { $current_value = "''"; } @@ -2424,12 +2424,12 @@ function PMA_getCurrentValueForDifferentTypes($possibly_uploaded_val, $key, $current_value = '0x' . $current_value; } elseif ($type == 'bit') { $current_value = preg_replace('/[^01]/', '0', $current_value); - $current_value = "b'" . PMA\libraries\Util::sqlAddSlashes($current_value) + $current_value = "b'" . $GLOBALS['dbi']->escapeString($current_value) . "'"; } elseif (! ($type == 'datetime' || $type == 'timestamp') || $current_value != 'CURRENT_TIMESTAMP' ) { - $current_value = "'" . PMA\libraries\Util::sqlAddSlashes($current_value) + $current_value = "'" . $GLOBALS['dbi']->escapeString($current_value) . "'"; } diff --git a/libraries/mysql_charsets.lib.php b/libraries/mysql_charsets.lib.php index 2b5dd880fa..6c272d43e4 100644 --- a/libraries/mysql_charsets.lib.php +++ b/libraries/mysql_charsets.lib.php @@ -117,7 +117,7 @@ function PMA_getDbCollation($db) if (! $GLOBALS['cfg']['Server']['DisableIS']) { // this is slow with thousands of databases $sql = 'SELECT DEFAULT_COLLATION_NAME FROM information_schema.SCHEMATA' - . ' WHERE SCHEMA_NAME = \'' . Util::sqlAddSlashes($db) + . ' WHERE SCHEMA_NAME = \'' . $GLOBALS['dbi']->escapeString($db) . '\' LIMIT 1'; return $GLOBALS['dbi']->fetchValue($sql); } else { diff --git a/libraries/navigation/Navigation.php b/libraries/navigation/Navigation.php index 6c32b34866..87701be706 100644 --- a/libraries/navigation/Navigation.php +++ b/libraries/navigation/Navigation.php @@ -90,11 +90,11 @@ class Navigation $sqlQuery = "INSERT INTO " . $navTable . "(`username`, `item_name`, `item_type`, `db_name`, `table_name`)" . " VALUES (" - . "'" . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "'," - . "'" . Util::sqlAddSlashes($itemName) . "'," - . "'" . Util::sqlAddSlashes($itemType) . "'," - . "'" . Util::sqlAddSlashes($dbName) . "'," - . "'" . (! empty($tableName)? Util::sqlAddSlashes($tableName) : "" ) + . "'" . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "'," + . "'" . $GLOBALS['dbi']->escapeString($itemName) . "'," + . "'" . $GLOBALS['dbi']->escapeString($itemType) . "'," + . "'" . $GLOBALS['dbi']->escapeString($dbName) . "'," + . "'" . (! empty($tableName)? $GLOBALS['dbi']->escapeString($tableName) : "" ) . "')"; PMA_queryAsControlUser($sqlQuery, false); } @@ -139,12 +139,12 @@ class Navigation $sqlQuery = "DELETE FROM " . $navTable . " WHERE" . " `username`='" - . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "'" - . " AND `item_name`='" . Util::sqlAddSlashes($itemName) . "'" - . " AND `item_type`='" . Util::sqlAddSlashes($itemType) . "'" - . " AND `db_name`='" . Util::sqlAddSlashes($dbName) . "'" + . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "'" + . " AND `item_name`='" . $GLOBALS['dbi']->escapeString($itemName) . "'" + . " AND `item_type`='" . $GLOBALS['dbi']->escapeString($itemType) . "'" + . " AND `db_name`='" . $GLOBALS['dbi']->escapeString($dbName) . "'" . (! empty($tableName) - ? " AND `table_name`='" . Util::sqlAddSlashes($tableName) . "'" + ? " AND `table_name`='" . $GLOBALS['dbi']->escapeString($tableName) . "'" : "" ); PMA_queryAsControlUser($sqlQuery, false); @@ -169,10 +169,10 @@ class Navigation . "." . Util::backquote($GLOBALS['cfgRelation']['navigationhiding']); $sqlQuery = "SELECT `item_name`, `item_type` FROM " . $navTable . " WHERE `username`='" - . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['user']) . "'" - . " AND `db_name`='" . Util::sqlAddSlashes($dbName) . "'" + . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['user']) . "'" + . " AND `db_name`='" . $GLOBALS['dbi']->escapeString($dbName) . "'" . " AND `table_name`='" - . (! empty($tableName) ? Util::sqlAddSlashes($tableName) : '') . "'"; + . (! empty($tableName) ? $GLOBALS['dbi']->escapeString($tableName) : '') . "'"; $result = PMA_queryAsControlUser($sqlQuery, false); $hidden = array(); diff --git a/libraries/navigation/NavigationTree.php b/libraries/navigation/NavigationTree.php index 5bc830a34b..2b7ca44a06 100644 --- a/libraries/navigation/NavigationTree.php +++ b/libraries/navigation/NavigationTree.php @@ -174,7 +174,7 @@ class NavigationTree $query = "SELECT (COUNT(DB_first_level) DIV %d) * %d "; $query .= "from ( "; $query .= " SELECT distinct SUBSTRING_INDEX(SCHEMA_NAME, "; - $query .= " '" . Util::sqlAddSlashes($GLOBALS['cfg']['NavigationTreeDbSeparator']) . "', 1) "; + $query .= " '" . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['NavigationTreeDbSeparator']) . "', 1) "; $query .= " DB_first_level "; $query .= " FROM INFORMATION_SCHEMA.SCHEMATA "; $query .= " WHERE `SCHEMA_NAME` < '%s' "; @@ -185,7 +185,7 @@ class NavigationTree $query, (int)$GLOBALS['cfg']['FirstLevelNavigationItems'], (int)$GLOBALS['cfg']['FirstLevelNavigationItems'], - Util::sqlAddSlashes($GLOBALS['db']) + $GLOBALS['dbi']->escapeString($GLOBALS['db']) ) ); diff --git a/libraries/navigation/nodes/Node.php b/libraries/navigation/nodes/Node.php index de6b1d2d62..c25d5da348 100644 --- a/libraries/navigation/nodes/Node.php +++ b/libraries/navigation/nodes/Node.php @@ -434,7 +434,7 @@ class Node $query .= "SELECT DB_first_level "; $query .= "FROM ( "; $query .= "SELECT DISTINCT SUBSTRING_INDEX(SCHEMA_NAME, "; - $query .= "'" . Util::sqlAddSlashes($dbSeparator) . "', 1) "; + $query .= "'" . $GLOBALS['dbi']->escapeString($dbSeparator) . "', 1) "; $query .= "DB_first_level "; $query .= "FROM INFORMATION_SCHEMA.SCHEMATA "; $query .= $this->_getWhereClause('SCHEMA_NAME', $searchClause); @@ -444,9 +444,9 @@ class Node $query .= ") t2 "; $query .= $this->_getWhereClause('SCHEMA_NAME', $searchClause); $query .= "AND 1 = LOCATE(CONCAT(DB_first_level, "; - $query .= "'" . Util::sqlAddSlashes($dbSeparator) . "'), "; + $query .= "'" . $GLOBALS['dbi']->escapeString($dbSeparator) . "'), "; $query .= "CONCAT(SCHEMA_NAME, "; - $query .= "'" . Util::sqlAddSlashes($dbSeparator) . "')) "; + $query .= "'" . $GLOBALS['dbi']->escapeString($dbSeparator) . "')) "; $query .= "ORDER BY SCHEMA_NAME ASC"; $retval = $GLOBALS['dbi']->fetchResult($query); @@ -480,7 +480,7 @@ class Node $subClauses = array(); foreach ($prefixes as $prefix) { $subClauses[] = " LOCATE('" - . Util::sqlAddSlashes($prefix) . $dbSeparator + . $GLOBALS['dbi']->escapeString($prefix) . $dbSeparator . "', " . "CONCAT(`Database`, '" . $dbSeparator . "')) = 1 "; } @@ -685,7 +685,7 @@ class Node { if (!empty($searchClause)) { $databases = array( - "%" . Util::sqlAddSlashes($searchClause, true) . "%", + "%" . $GLOBALS['dbi']->escapeString($searchClause, true) . "%", ); } elseif (!empty($GLOBALS['cfg']['Server']['only_db'])) { $databases = $GLOBALS['cfg']['Server']['only_db']; @@ -712,7 +712,7 @@ class Node if (!empty($searchClause)) { $whereClause .= "AND " . Util::backquote($columnName) . " LIKE '%"; - $whereClause .= Util::sqlAddSlashes( + $whereClause .= $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -722,7 +722,7 @@ class Node if (!empty($GLOBALS['cfg']['Server']['hide_db'])) { $whereClause .= "AND " . Util::backquote($columnName) . " NOT REGEXP '" - . Util::sqlAddSlashes($GLOBALS['cfg']['Server']['hide_db'], true) + . $GLOBALS['dbi']->escapeString($GLOBALS['cfg']['Server']['hide_db'], true) . "' "; } @@ -737,7 +737,7 @@ class Node foreach ($GLOBALS['cfg']['Server']['only_db'] as $each_only_db) { $subClauses[] = " " . Util::backquote($columnName) . " LIKE '" - . Util::sqlAddSlashes($each_only_db, true) . "' "; + . $GLOBALS['dbi']->escapeString($each_only_db, true) . "' "; } $whereClause .= implode("OR", $subClauses) . ") "; } @@ -817,7 +817,7 @@ class Node ); $sqlQuery = "SELECT `db_name`, COUNT(*) AS `count` FROM " . $navTable . " WHERE `username`='" - . Util::sqlAddSlashes( + . $GLOBALS['dbi']->escapeString( $GLOBALS['cfg']['Server']['user'] ) . "'" . " GROUP BY `db_name`"; diff --git a/libraries/navigation/nodes/NodeDatabase.php b/libraries/navigation/nodes/NodeDatabase.php index 937d0838a3..54efb6a498 100644 --- a/libraries/navigation/nodes/NodeDatabase.php +++ b/libraries/navigation/nodes/NodeDatabase.php @@ -115,7 +115,7 @@ class NodeDatabase extends Node } if (! $GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`TABLES` "; $query .= "WHERE `TABLE_SCHEMA`='$db' "; @@ -199,7 +199,7 @@ class NodeDatabase extends Node { $db = $this->real_name; if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`ROUTINES` "; $query .= "WHERE `ROUTINE_SCHEMA` " @@ -214,7 +214,7 @@ class NodeDatabase extends Node } $retval = (int)$GLOBALS['dbi']->fetchValue($query); } else { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SHOW PROCEDURE STATUS WHERE `Db`='$db' "; if (!empty($searchClause)) { $query .= "AND " . $this->_getWhereClauseForSearch( @@ -245,7 +245,7 @@ class NodeDatabase extends Node { $db = $this->real_name; if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`ROUTINES` "; $query .= "WHERE `ROUTINE_SCHEMA` " @@ -260,7 +260,7 @@ class NodeDatabase extends Node } $retval = (int)$GLOBALS['dbi']->fetchValue($query); } else { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SHOW FUNCTION STATUS WHERE `Db`='$db' "; if (!empty($searchClause)) { $query .= "AND " . $this->_getWhereClauseForSearch( @@ -291,7 +291,7 @@ class NodeDatabase extends Node { $db = $this->real_name; if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); + $db = $GLOBALS['dbi']->escapeString($db); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`EVENTS` "; $query .= "WHERE `EVENT_SCHEMA` " @@ -339,10 +339,10 @@ class NodeDatabase extends Node $query = ''; if ($singleItem) { $query .= Util::backquote($columnName) . " = "; - $query .= "'" . Util::sqlAddSlashes($searchClause) . "'"; + $query .= "'" . $GLOBALS['dbi']->escapeString($searchClause) . "'"; } else { $query .= Util::backquote($columnName) . " LIKE "; - $query .= "'%" . Util::sqlAddSlashes($searchClause, true) + $query .= "'%" . $GLOBALS['dbi']->escapeString($searchClause, true) . "%'"; } @@ -418,7 +418,7 @@ class NodeDatabase extends Node $sqlQuery = "SELECT `item_name` FROM " . $navTable . " WHERE `username`='" . $cfgRelation['user'] . "'" . " AND `item_type`='" . $type - . "'" . " AND `db_name`='" . Util::sqlAddSlashes($db) + . "'" . " AND `db_name`='" . $GLOBALS['dbi']->escapeString($db) . "'"; $result = PMA_queryAsControlUser($sqlQuery, false); $hiddenItems = array(); @@ -452,14 +452,14 @@ class NodeDatabase extends Node $retval = array(); $db = $this->real_name; if (! $GLOBALS['cfg']['Server']['DisableIS']) { - $escdDb = Util::sqlAddSlashes($db); + $escdDb = $GLOBALS['dbi']->escapeString($db); $query = "SELECT `TABLE_NAME` AS `name` "; $query .= "FROM `INFORMATION_SCHEMA`.`TABLES` "; $query .= "WHERE `TABLE_SCHEMA`='$escdDb' "; $query .= "AND `TABLE_TYPE`" . $condition . "'BASE TABLE' "; if (! empty($searchClause)) { $query .= "AND `TABLE_NAME` LIKE '%"; - $query .= Util::sqlAddSlashes( + $query .= $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -476,7 +476,7 @@ class NodeDatabase extends Node $query .= "AND " . Util::backquote( "Tables_in_" . $db ); - $query .= " LIKE '%" . Util::sqlAddSlashes( + $query .= " LIKE '%" . $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -542,7 +542,7 @@ class NodeDatabase extends Node $retval = array(); $db = $this->real_name; if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $escdDb = Util::sqlAddSlashes($db); + $escdDb = $GLOBALS['dbi']->escapeString($db); $query = "SELECT `ROUTINE_NAME` AS `name` "; $query .= "FROM `INFORMATION_SCHEMA`.`ROUTINES` "; $query .= "WHERE `ROUTINE_SCHEMA` " @@ -550,7 +550,7 @@ class NodeDatabase extends Node $query .= "AND `ROUTINE_TYPE`='" . $routineType . "' "; if (!empty($searchClause)) { $query .= "AND `ROUTINE_NAME` LIKE '%"; - $query .= Util::sqlAddSlashes( + $query .= $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -560,11 +560,11 @@ class NodeDatabase extends Node $query .= "LIMIT " . intval($pos) . ", $maxItems"; $retval = $GLOBALS['dbi']->fetchResult($query); } else { - $escdDb = Util::sqlAddSlashes($db); + $escdDb = $GLOBALS['dbi']->escapeString($db); $query = "SHOW " . $routineType . " STATUS WHERE `Db`='$escdDb' "; if (!empty($searchClause)) { $query .= "AND `Name` LIKE '%"; - $query .= Util::sqlAddSlashes( + $query .= $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -629,14 +629,14 @@ class NodeDatabase extends Node $retval = array(); $db = $this->real_name; if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $escdDb = Util::sqlAddSlashes($db); + $escdDb = $GLOBALS['dbi']->escapeString($db); $query = "SELECT `EVENT_NAME` AS `name` "; $query .= "FROM `INFORMATION_SCHEMA`.`EVENTS` "; $query .= "WHERE `EVENT_SCHEMA` " . Util::getCollateForIS() . "='$escdDb' "; if (!empty($searchClause)) { $query .= "AND `EVENT_NAME` LIKE '%"; - $query .= Util::sqlAddSlashes( + $query .= $GLOBALS['dbi']->escapeString( $searchClause, true ); @@ -650,7 +650,7 @@ class NodeDatabase extends Node $query = "SHOW EVENTS FROM $escdDb "; if (!empty($searchClause)) { $query .= "WHERE `Name` LIKE '%"; - $query .= Util::sqlAddSlashes( + $query .= $GLOBALS['dbi']->escapeString( $searchClause, true ); diff --git a/libraries/navigation/nodes/NodeTable.php b/libraries/navigation/nodes/NodeTable.php index c820e742d6..89020caebc 100644 --- a/libraries/navigation/nodes/NodeTable.php +++ b/libraries/navigation/nodes/NodeTable.php @@ -94,8 +94,8 @@ class NodeTable extends NodeDatabaseChild switch ($type) { case 'columns': if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); - $table = Util::sqlAddSlashes($table); + $db = $GLOBALS['dbi']->escapeString($db); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`COLUMNS` "; $query .= "WHERE `TABLE_NAME`='$table' "; @@ -120,8 +120,8 @@ class NodeTable extends NodeDatabaseChild break; case 'triggers': if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); - $table = Util::sqlAddSlashes($table); + $db = $GLOBALS['dbi']->escapeString($db); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SELECT COUNT(*) "; $query .= "FROM `INFORMATION_SCHEMA`.`TRIGGERS` "; $query .= "WHERE `EVENT_OBJECT_SCHEMA` " @@ -131,7 +131,7 @@ class NodeTable extends NodeDatabaseChild $retval = (int)$GLOBALS['dbi']->fetchValue($query); } else { $db = Util::backquote($db); - $table = Util::sqlAddSlashes($table); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SHOW TRIGGERS FROM $db WHERE `Table` = '$table'"; $retval = (int)$GLOBALS['dbi']->numRows( $GLOBALS['dbi']->tryQuery($query) @@ -166,8 +166,8 @@ class NodeTable extends NodeDatabaseChild switch ($type) { case 'columns': if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); - $table = Util::sqlAddSlashes($table); + $db = $GLOBALS['dbi']->escapeString($db); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SELECT `COLUMN_NAME` AS `name` "; $query .= "FROM `INFORMATION_SCHEMA`.`COLUMNS` "; $query .= "WHERE `TABLE_NAME`='$table' "; @@ -221,8 +221,8 @@ class NodeTable extends NodeDatabaseChild break; case 'triggers': if (!$GLOBALS['cfg']['Server']['DisableIS']) { - $db = Util::sqlAddSlashes($db); - $table = Util::sqlAddSlashes($table); + $db = $GLOBALS['dbi']->escapeString($db); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SELECT `TRIGGER_NAME` AS `name` "; $query .= "FROM `INFORMATION_SCHEMA`.`TRIGGERS` "; $query .= "WHERE `EVENT_OBJECT_SCHEMA` " @@ -236,7 +236,7 @@ class NodeTable extends NodeDatabaseChild } $db = Util::backquote($db); - $table = Util::sqlAddSlashes($table); + $table = $GLOBALS['dbi']->escapeString($table); $query = "SHOW TRIGGERS FROM $db WHERE `Table` = '$table'"; $handle = $GLOBALS['dbi']->tryQuery($query); if ($handle === false) { diff --git a/libraries/operations.lib.php b/libraries/operations.lib.php index 34100514fb..358bd8a2b5 100644 --- a/libraries/operations.lib.php +++ b/libraries/operations.lib.php @@ -515,7 +515,7 @@ function PMA_runEventDefinitionsForDb($db) { $event_names = $GLOBALS['dbi']->fetchResult( 'SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' - . PMA\libraries\Util::sqlAddSlashes($db, true) . '\';' + . $GLOBALS['dbi']->escapeString($db) . '\';' ); if ($event_names) { foreach ($event_names as $event_name) { @@ -585,26 +585,26 @@ function PMA_AdjustPrivileges_moveDB($oldDb, $newname) // For Db specific privileges $query_db_specific = 'UPDATE ' . Util::backquote('db') - . 'SET Db = \'' . Util::sqlAddSlashes($newname) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\';'; + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newname) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\';'; $GLOBALS['dbi']->query($query_db_specific); // For table specific privileges $query_table_specific = 'UPDATE ' . Util::backquote('tables_priv') - . 'SET Db = \'' . Util::sqlAddSlashes($newname) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\';'; + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newname) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\';'; $GLOBALS['dbi']->query($query_table_specific); // For column specific privileges $query_col_specific = 'UPDATE ' . Util::backquote('columns_priv') - . 'SET Db = \'' . Util::sqlAddSlashes($newname) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\';'; + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newname) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\';'; $GLOBALS['dbi']->query($query_col_specific); // For procedures specific privileges $query_proc_specific = 'UPDATE ' . Util::backquote('procs_priv') - . 'SET Db = \'' . Util::sqlAddSlashes($newname) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\';'; + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newname) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\';'; $GLOBALS['dbi']->query($query_proc_specific); // Finally FLUSH the new privileges @@ -1771,7 +1771,7 @@ function PMA_getTableAltersArray($is_myisam_or_aria, $is_isam, $pack_keys, && urldecode($_REQUEST['prev_comment']) !== $_REQUEST['comment'] ) { $table_alters[] = 'COMMENT = \'' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['comment']) . '\''; + . $GLOBALS['dbi']->escapeString($_REQUEST['comment']) . '\''; } if (! empty($newTblStorageEngine) @@ -1830,7 +1830,7 @@ function PMA_getTableAltersArray($is_myisam_or_aria, $is_isam, $pack_keys, || $_REQUEST['new_auto_increment'] !== $auto_increment) ) { $table_alters[] = 'auto_increment = ' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['new_auto_increment']); + . $GLOBALS['dbi']->escapeString($_REQUEST['new_auto_increment']); } if (! empty($_REQUEST['new_row_format'])) { @@ -1841,7 +1841,7 @@ function PMA_getTableAltersArray($is_myisam_or_aria, $is_isam, $pack_keys, || $newRowFormatLower !== mb_strtolower($row_format)) ) { $table_alters[] = 'ROW_FORMAT = ' - . PMA\libraries\Util::sqlAddSlashes($newRowFormat); + . $GLOBALS['dbi']->escapeString($newRowFormat); } } @@ -1945,15 +1945,15 @@ function PMA_AdjustPrivileges_renameOrMoveTable($oldDb, $oldTable, $newDb, $newT // For table specific privileges $query_table_specific = 'UPDATE ' . Util::backquote('tables_priv') - . 'SET Db = \'' . Util::sqlAddSlashes($newDb) . '\', Table_name = \'' . Util::sqlAddSlashes($newTable) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\' AND Table_name = \'' . Util::sqlAddSlashes($oldTable) + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newDb) . '\', Table_name = \'' . $GLOBALS['dbi']->escapeString($newTable) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\' AND Table_name = \'' . $GLOBALS['dbi']->escapeString($oldTable) . '\';'; $GLOBALS['dbi']->query($query_table_specific); // For column specific privileges $query_col_specific = 'UPDATE ' . Util::backquote('columns_priv') - . 'SET Db = \'' . Util::sqlAddSlashes($newDb) . '\', Table_name = \'' . Util::sqlAddSlashes($newTable) - . '\' where Db = \'' . Util::sqlAddSlashes($oldDb) . '\' AND Table_name = \'' . Util::sqlAddSlashes($oldTable) + . 'SET Db = \'' . $GLOBALS['dbi']->escapeString($newDb) . '\', Table_name = \'' . $GLOBALS['dbi']->escapeString($newTable) + . '\' where Db = \'' . $GLOBALS['dbi']->escapeString($oldDb) . '\' AND Table_name = \'' . $GLOBALS['dbi']->escapeString($oldTable) . '\';'; $GLOBALS['dbi']->query($query_col_specific); diff --git a/libraries/plugins/export/ExportSql.php b/libraries/plugins/export/ExportSql.php index 6af3b8b08d..df13901294 100644 --- a/libraries/plugins/export/ExportSql.php +++ b/libraries/plugins/export/ExportSql.php @@ -949,7 +949,7 @@ class ExportSql extends ExportPlugin $event_names = $GLOBALS['dbi']->fetchResult( "SELECT EVENT_NAME FROM information_schema.EVENTS WHERE" - . " EVENT_SCHEMA= '" . Util::sqlAddSlashes($db, true) + . " EVENT_SCHEMA= '" . $GLOBALS['dbi']->escapeString($db) . "';" ); @@ -1102,7 +1102,7 @@ class ExportSql extends ExportPlugin . Util::backquote($cfgRelation['db']) . "." . Util::backquote($cfgRelation[$type]) . " WHERE " . Util::backquote($dbNameColumn) - . " = '" . Util::sqlAddSlashes($db) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($db) . "'"; $result = $GLOBALS['dbi']->fetchResult( $sql_query, @@ -1120,7 +1120,7 @@ class ExportSql extends ExportPlugin . " WHERE " . Util::backquote( $dbNameColumn ) - . " = '" . Util::sqlAddSlashes($db) . "'" + . " = '" . $GLOBALS['dbi']->escapeString($db) . "'" . " AND `page_nr` = '" . intval($page) . "'"; if (!$this->exportData( @@ -1186,10 +1186,10 @@ class ExportSql extends ExportPlugin $sql_query .= Util::backquote($cfgRelation['db']) . '.' . Util::backquote($cfgRelation[$type]) . " WHERE " . Util::backquote($dbNameColumn) - . " = '" . Util::sqlAddSlashes($db) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($db) . "'"; if (isset($table)) { $sql_query .= " AND `table_name` = '" - . Util::sqlAddSlashes($table) . "'"; + . $GLOBALS['dbi']->escapeString($table) . "'"; } if (!$this->exportData( @@ -1309,7 +1309,7 @@ class ExportSql extends ExportPlugin } if (isset($column['Default'])) { $create_query .= " DEFAULT '" - . Util::sqlAddSlashes($column['Default']) . "'"; + . $GLOBALS['dbi']->escapeString($column['Default']) . "'"; } else { if ($column['Null'] == 'YES') { $create_query .= " DEFAULT NULL"; @@ -1317,7 +1317,7 @@ class ExportSql extends ExportPlugin } if (!empty($column['Comment'])) { $create_query .= " COMMENT '" - . Util::sqlAddSlashes($column['Comment']) . "'"; + . $GLOBALS['dbi']->escapeString($column['Comment']) . "'"; } $firstCol = false; } @@ -1389,7 +1389,7 @@ class ExportSql extends ExportPlugin // with $GLOBALS['dbi']->numRows() in mysqli $result = $GLOBALS['dbi']->query( 'SHOW TABLE STATUS FROM ' . Util::backquote($db) - . ' WHERE Name = \'' . Util::sqlAddSlashes($table) . '\'', + . ' WHERE Name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'', null, DatabaseInterface::QUERY_STORE ); @@ -2397,7 +2397,7 @@ class ExportSql extends ExportPlugin } } elseif ($fields_meta[$j]->type == 'bit') { // detection of 'bit' works only on mysqli extension - $values[] = "b'" . Util::sqlAddSlashes( + $values[] = "b'" . $GLOBALS['dbi']->escapeString( Util::printableBitValue( $row[$j], $fields_meta[$j]->length @@ -2411,10 +2411,12 @@ class ExportSql extends ExportPlugin } else { // something else -> treat as a string $values[] = '\'' - . str_replace( - $search, - $replace, - Util::sqlAddSlashes($row[$j]) + . $GLOBALS['dbi']->escapeString( + str_replace( + $search, + $replace, + $row[$j] + ) ) . '\''; } // end if diff --git a/libraries/plugins/export/ExportXml.php b/libraries/plugins/export/ExportXml.php index cf34f66e64..6286071347 100644 --- a/libraries/plugins/export/ExportXml.php +++ b/libraries/plugins/export/ExportXml.php @@ -253,7 +253,7 @@ class ExportXml extends ExportPlugin $result = $GLOBALS['dbi']->fetchResult( 'SELECT `DEFAULT_CHARACTER_SET_NAME`, `DEFAULT_COLLATION_NAME`' . ' FROM `information_schema`.`SCHEMATA` WHERE `SCHEMA_NAME`' - . ' = \'' . Util::sqlAddSlashes($db) . '\' LIMIT 1' + . ' = \'' . $GLOBALS['dbi']->escapeString($db) . '\' LIMIT 1' ); $db_collation = $result[0]['DEFAULT_COLLATION_NAME']; $db_charset = $result[0]['DEFAULT_CHARACTER_SET_NAME']; diff --git a/libraries/plugins/import/ImportCsv.php b/libraries/plugins/import/ImportCsv.php index 2e3ebc4611..f0dc96ebb6 100644 --- a/libraries/plugins/import/ImportCsv.php +++ b/libraries/plugins/import/ImportCsv.php @@ -548,7 +548,7 @@ class ImportCsv extends AbstractImportCsv $sql .= 'NULL'; } else { $sql .= '\'' - . PMA\libraries\Util::sqlAddSlashes($val) + . $GLOBALS['dbi']->escapeString($val) . '\''; } diff --git a/libraries/plugins/import/ImportLdi.php b/libraries/plugins/import/ImportLdi.php index 7ccc26326b..c1d8540efc 100644 --- a/libraries/plugins/import/ImportLdi.php +++ b/libraries/plugins/import/ImportLdi.php @@ -117,7 +117,7 @@ class ImportLdi extends AbstractImportCsv if (isset($ldi_local_option)) { $sql .= ' LOCAL'; } - $sql .= ' INFILE \'' . PMA\libraries\Util::sqlAddSlashes($import_file) + $sql .= ' INFILE \'' . $GLOBALS['dbi']->escapeString($import_file) . '\''; if (isset($ldi_replace)) { $sql .= ' REPLACE'; @@ -131,11 +131,11 @@ class ImportLdi extends AbstractImportCsv } if (strlen($ldi_enclosed) > 0) { $sql .= ' ENCLOSED BY \'' - . PMA\libraries\Util::sqlAddSlashes($ldi_enclosed) . '\''; + . $GLOBALS['dbi']->escapeString($ldi_enclosed) . '\''; } if (strlen($ldi_escaped) > 0) { $sql .= ' ESCAPED BY \'' - . PMA\libraries\Util::sqlAddSlashes($ldi_escaped) . '\''; + . $GLOBALS['dbi']->escapeString($ldi_escaped) . '\''; } if (strlen($ldi_new_line) > 0) { if ($ldi_new_line == 'auto') { diff --git a/libraries/plugins/schema/pdf/Pdf.php b/libraries/plugins/schema/pdf/Pdf.php index 35722da3e6..19a35626bd 100644 --- a/libraries/plugins/schema/pdf/Pdf.php +++ b/libraries/plugins/schema/pdf/Pdf.php @@ -240,7 +240,7 @@ class Pdf extends PDF_lib $test_query = 'SELECT * FROM ' . Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . Util::backquote($GLOBALS['cfgRelation']['pdf_pages']) - . ' WHERE db_name = \'' . Util::sqlAddSlashes($this->_db) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($this->_db) . '\' AND page_nr = \'' . $this->_pageNumber . '\''; $test_rs = PMA_queryAsControlUser($test_query); $pages = @$GLOBALS['dbi']->fetchAssoc($test_rs); diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 03e018c5cc..950e9252ba 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -352,8 +352,8 @@ function PMA_getDefaultPage($db) $query = "SELECT `page_nr`" . " FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) - . " WHERE `db_name` = '" . PMA\libraries\Util::sqlAddSlashes($db) . "'" - . " AND `page_descr` = '" . PMA\libraries\Util::sqlAddSlashes($db) . "'"; + . " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($db) . "'" + . " AND `page_descr` = '" . $GLOBALS['dbi']->escapeString($db) . "'"; $default_page_no = $GLOBALS['dbi']->fetchResult( $query, @@ -393,7 +393,7 @@ function PMA_getLoadingPage($db) $query = "SELECT MIN(`page_nr`)" . " FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) - . " WHERE `db_name` = '" . PMA\libraries\Util::sqlAddSlashes($db) . "'"; + . " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($db) . "'"; $min_page_no = $GLOBALS['dbi']->fetchResult( $query, @@ -450,9 +450,9 @@ function PMA_saveTablePositions($pg) . "." . PMA\libraries\Util::backquote( $GLOBALS['cfgRelation']['table_coords'] ) - . " WHERE `db_name` = '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['db']) + . " WHERE `db_name` = '" . $GLOBALS['dbi']->escapeString($_REQUEST['db']) . "'" - . " AND `pdf_page_number` = '" . PMA\libraries\Util::sqlAddSlashes($pg) + . " AND `pdf_page_number` = '" . $GLOBALS['dbi']->escapeString($pg) . "'"; $res = PMA_queryAsControlUser( @@ -476,11 +476,11 @@ function PMA_saveTablePositions($pg) . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['table_coords']) . " (`db_name`, `table_name`, `pdf_page_number`, `x`, `y`)" . " VALUES (" - . "'" . PMA\libraries\Util::sqlAddSlashes($DB) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($TAB) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($pg) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['t_x'][$key]) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['t_y'][$key]) . "')"; + . "'" . $GLOBALS['dbi']->escapeString($DB) . "', " + . "'" . $GLOBALS['dbi']->escapeString($TAB) . "', " + . "'" . $GLOBALS['dbi']->escapeString($pg) . "', " + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['t_x'][$key]) . "', " + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['t_y'][$key]) . "')"; $res = PMA_queryAsControlUser( $query, true, PMA\libraries\DatabaseInterface::QUERY_STORE @@ -623,12 +623,12 @@ function PMA_addNewRelation($db, $T1, $F1, $T2, $F2, $on_delete, $on_update) . "(master_db, master_table, master_field, " . "foreign_db, foreign_table, foreign_field)" . " values(" - . "'" . PMA\libraries\Util::sqlAddSlashes($db) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($T2) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($F2) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($db) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($T1) . "', " - . "'" . PMA\libraries\Util::sqlAddSlashes($F1) . "')"; + . "'" . $GLOBALS['dbi']->escapeString($db) . "', " + . "'" . $GLOBALS['dbi']->escapeString($T2) . "', " + . "'" . $GLOBALS['dbi']->escapeString($F2) . "', " + . "'" . $GLOBALS['dbi']->escapeString($db) . "', " + . "'" . $GLOBALS['dbi']->escapeString($T1) . "', " + . "'" . $GLOBALS['dbi']->escapeString($F1) . "')"; if (PMA_queryAsControlUser($q, false, PMA\libraries\DatabaseInterface::QUERY_STORE) ) { @@ -692,12 +692,12 @@ function PMA_removeRelation($T1, $F1, $T2, $F2) $delete_query = "DELETE FROM " . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db']) . "." . $GLOBALS['cfgRelation']['relation'] . " WHERE " - . "master_db = '" . PMA\libraries\Util::sqlAddSlashes($DB2) . "'" - . " AND master_table = '" . PMA\libraries\Util::sqlAddSlashes($T2) . "'" - . " AND master_field = '" . PMA\libraries\Util::sqlAddSlashes($F2) . "'" - . " AND foreign_db = '" . PMA\libraries\Util::sqlAddSlashes($DB1) . "'" - . " AND foreign_table = '" . PMA\libraries\Util::sqlAddSlashes($T1) . "'" - . " AND foreign_field = '" . PMA\libraries\Util::sqlAddSlashes($F1) . "'"; + . "master_db = '" . $GLOBALS['dbi']->escapeString($DB2) . "'" + . " AND master_table = '" . $GLOBALS['dbi']->escapeString($T2) . "'" + . " AND master_field = '" . $GLOBALS['dbi']->escapeString($F2) . "'" + . " AND foreign_db = '" . $GLOBALS['dbi']->escapeString($DB1) . "'" + . " AND foreign_table = '" . $GLOBALS['dbi']->escapeString($T1) . "'" + . " AND foreign_field = '" . $GLOBALS['dbi']->escapeString($F1) . "'"; $result = PMA_queryAsControlUser( $delete_query, @@ -740,7 +740,7 @@ function PMA_saveDesignerSetting($index, $value) . " FROM " . PMA\libraries\Util::backquote($cfgDesigner['db']) . "." . PMA\libraries\Util::backquote($cfgDesigner['table']) . " WHERE username = '" - . PMA\libraries\Util::sqlAddSlashes($cfgDesigner['user']) . "';"; + . $GLOBALS['dbi']->escapeString($cfgDesigner['user']) . "';"; $orig_data = $GLOBALS['dbi']->fetchSingleRow( $orig_data_query, 'ASSOC', $GLOBALS['controllink'] @@ -756,7 +756,7 @@ function PMA_saveDesignerSetting($index, $value) . "." . PMA\libraries\Util::backquote($cfgDesigner['table']) . " SET settings_data = '" . $orig_data . "'" . " WHERE username = '" - . PMA\libraries\Util::sqlAddSlashes($cfgDesigner['user']) . "';"; + . $GLOBALS['dbi']->escapeString($cfgDesigner['user']) . "';"; $success = PMA_queryAsControlUser($save_query); } else { diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 20ed015eae..3cc6d00818 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -756,12 +756,12 @@ function PMA_getForeigners($db, $table, $column = '', $source = 'both') `foreign_field` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) . ' - WHERE `master_db` = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\' - AND `master_table` = \'' . PMA\libraries\Util::sqlAddSlashes($table) + WHERE `master_db` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' + AND `master_table` = \'' . $GLOBALS['dbi']->escapeString($table) . '\' '; if (mb_strlen($column)) { $rel_query .= ' AND `master_field` = ' - . '\'' . PMA\libraries\Util::sqlAddSlashes($column) . '\''; + . '\'' . $GLOBALS['dbi']->escapeString($column) . '\''; } $foreign = $GLOBALS['dbi']->fetchResult( $rel_query, 'master_field', null, $GLOBALS['controllink'] @@ -836,8 +836,8 @@ function PMA_getDisplayField($db, $table) SELECT `display_field` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_info']) . ' - WHERE `db_name` = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\' - AND `table_name` = \'' . PMA\libraries\Util::sqlAddSlashes($table) + WHERE `db_name` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' + AND `table_name` = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; $row = $GLOBALS['dbi']->fetchSingleRow( @@ -919,7 +919,7 @@ function PMA_getDbComment($db) FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['column_info']) . " - WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($db) . "' + WHERE db_name = '" . $GLOBALS['dbi']->escapeString($db) . "' AND table_name = '' AND column_name = '(db_comment)'"; $com_rs = PMA_queryAsControlUser( @@ -995,17 +995,17 @@ function PMA_setDbComment($db, $comment = '') . PMA\libraries\Util::backquote($cfgRelation['column_info']) . ' (`db_name`, `table_name`, `column_name`, `comment`)' . ' VALUES (\'' - . PMA\libraries\Util::sqlAddSlashes($db) + . $GLOBALS['dbi']->escapeString($db) . "', '', '(db_comment)', '" - . PMA\libraries\Util::sqlAddSlashes($comment) + . $GLOBALS['dbi']->escapeString($comment) . "') " . ' ON DUPLICATE KEY UPDATE ' - . "`comment` = '" . PMA\libraries\Util::sqlAddSlashes($comment) . "'"; + . "`comment` = '" . $GLOBALS['dbi']->escapeString($comment) . "'"; } else { $upd_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) - . ' WHERE `db_name` = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE `db_name` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' AND `table_name` = \'\' AND `column_name` = \'(db_comment)\''; @@ -1071,11 +1071,11 @@ function PMA_setHistory($db, $table, $username, $sqlquery) `timevalue`, `sqlquery`) VALUES - (\'' . PMA\libraries\Util::sqlAddSlashes($username) . '\', - \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\', - \'' . PMA\libraries\Util::sqlAddSlashes($table) . '\', + (\'' . $GLOBALS['dbi']->escapeString($username) . '\', + \'' . $GLOBALS['dbi']->escapeString($db) . '\', + \'' . $GLOBALS['dbi']->escapeString($table) . '\', NOW(), - \'' . PMA\libraries\Util::sqlAddSlashes($sqlquery) . '\')' + \'' . $GLOBALS['dbi']->escapeString($sqlquery) . '\')' ); PMA_purgeHistory($username); @@ -1117,7 +1117,7 @@ function PMA_getHistory($username) `timevalue` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['history']) . ' - WHERE `username` = \'' . PMA\libraries\Util::sqlAddSlashes($username) . '\' + WHERE `username` = \'' . $GLOBALS['dbi']->escapeString($username) . '\' ORDER BY `id` DESC'; return $GLOBALS['dbi']->fetchResult( @@ -1152,7 +1152,7 @@ function PMA_purgeHistory($username) SELECT `timevalue` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['history']) . ' - WHERE `username` = \'' . PMA\libraries\Util::sqlAddSlashes($username) . '\' + WHERE `username` = \'' . $GLOBALS['dbi']->escapeString($username) . '\' ORDER BY `timevalue` DESC LIMIT ' . $GLOBALS['cfg']['QueryHistoryMax'] . ', 1'; @@ -1163,7 +1163,7 @@ function PMA_purgeHistory($username) 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['history']) . ' - WHERE `username` = \'' . PMA\libraries\Util::sqlAddSlashes($username) + WHERE `username` = \'' . $GLOBALS['dbi']->escapeString($username) . '\' AND `timevalue` <= \'' . $max_time . '\'' ); @@ -1381,7 +1381,7 @@ function PMA_getForeignData( . '.' . PMA\libraries\Util::backquote($foreign_table); $f_query_filter = empty($foreign_filter) ? '' : ' WHERE ' . PMA\libraries\Util::backquote($foreign_field) - . ' LIKE "%' . PMA\libraries\Util::sqlAddSlashes( + . ' LIKE "%' . $GLOBALS['dbi']->escapeString( $foreign_filter, true ) . '%"' @@ -1389,7 +1389,7 @@ function PMA_getForeignData( ($foreign_display == false) ? '' : ' OR ' . PMA\libraries\Util::backquote($foreign_display) - . ' LIKE "%' . PMA\libraries\Util::sqlAddSlashes( + . ' LIKE "%' . $GLOBALS['dbi']->escapeString( $foreign_filter, true ) @@ -1468,14 +1468,14 @@ function PMA_REL_renameField($db, $table, $field, $new_name) $table_query = 'UPDATE ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_info']) - . ' SET display_field = \'' . PMA\libraries\Util::sqlAddSlashes( + . ' SET display_field = \'' . $GLOBALS['dbi']->escapeString( $new_name ) . '\'' - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND display_field = \'' . PMA\libraries\Util::sqlAddSlashes($field) + . ' AND display_field = \'' . $GLOBALS['dbi']->escapeString($field) . '\''; PMA_queryAsControlUser($table_query); } @@ -1484,28 +1484,28 @@ function PMA_REL_renameField($db, $table, $field, $new_name) $table_query = 'UPDATE ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' SET master_field = \'' . PMA\libraries\Util::sqlAddSlashes( + . ' SET master_field = \'' . $GLOBALS['dbi']->escapeString( $new_name ) . '\'' - . ' WHERE master_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE master_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND master_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND master_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND master_field = \'' . PMA\libraries\Util::sqlAddSlashes($field) + . ' AND master_field = \'' . $GLOBALS['dbi']->escapeString($field) . '\''; PMA_queryAsControlUser($table_query); $table_query = 'UPDATE ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' SET foreign_field = \'' . PMA\libraries\Util::sqlAddSlashes( + . ' SET foreign_field = \'' . $GLOBALS['dbi']->escapeString( $new_name ) . '\'' - . ' WHERE foreign_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE foreign_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND foreign_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND foreign_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND foreign_field = \'' . PMA\libraries\Util::sqlAddSlashes($field) + . ' AND foreign_field = \'' . $GLOBALS['dbi']->escapeString($field) . '\''; PMA_queryAsControlUser($table_query); @@ -1535,14 +1535,14 @@ function PMA_REL_renameSingleTable($table, . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA\libraries\Util::backquote($GLOBALS['cfgRelation'][$table]) . ' SET ' - . $db_field . ' = \'' . PMA\libraries\Util::sqlAddSlashes($target_db) + . $db_field . ' = \'' . $GLOBALS['dbi']->escapeString($target_db) . '\', ' - . $table_field . ' = \'' . PMA\libraries\Util::sqlAddSlashes($target_table) + . $table_field . ' = \'' . $GLOBALS['dbi']->escapeString($target_table) . '\'' . ' WHERE ' - . $db_field . ' = \'' . PMA\libraries\Util::sqlAddSlashes($source_db) . '\'' + . $db_field . ' = \'' . $GLOBALS['dbi']->escapeString($source_db) . '\'' . ' AND ' - . $table_field . ' = \'' . PMA\libraries\Util::sqlAddSlashes($source_table) + . $table_field . ' = \'' . $GLOBALS['dbi']->escapeString($source_table) . '\''; PMA_queryAsControlUser($query); } @@ -1615,8 +1615,8 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['db']) . "." . PMA\libraries\Util::backquote($GLOBALS['cfgRelation']['table_coords']) - . " WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($source_db) . "'" - . " AND table_name = '" . PMA\libraries\Util::sqlAddSlashes($source_table) + . " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($source_db) . "'" + . " AND table_name = '" . $GLOBALS['dbi']->escapeString($source_table) . "'"; PMA_queryAsControlUser($remove_query); } @@ -1646,13 +1646,13 @@ function PMA_REL_renameTable($source_db, $target_db, $source_table, $target_tabl . PMA\libraries\Util::backquote( $GLOBALS['cfgRelation']['navigationhiding'] ) - . " SET db_name = '" . PMA\libraries\Util::sqlAddSlashes($target_db) + . " SET db_name = '" . $GLOBALS['dbi']->escapeString($target_db) . "'," - . " item_name = '" . PMA\libraries\Util::sqlAddSlashes($target_table) + . " item_name = '" . $GLOBALS['dbi']->escapeString($target_table) . "'" - . " WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($source_db) + . " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($source_db) . "'" - . " AND item_name = '" . PMA\libraries\Util::sqlAddSlashes($source_table) + . " AND item_name = '" . $GLOBALS['dbi']->escapeString($source_table) . "'" . " AND item_type = 'table'"; PMA_queryAsControlUser($query); @@ -1678,8 +1678,8 @@ function PMA_REL_createPage($newpage, $cfgRelation, $db) . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) . ' (db_name, page_descr)' . ' VALUES (\'' - . PMA\libraries\Util::sqlAddSlashes($db) . '\', \'' - . PMA\libraries\Util::sqlAddSlashes($newpage) . '\')'; + . $GLOBALS['dbi']->escapeString($db) . '\', \'' + . $GLOBALS['dbi']->escapeString($newpage) . '\')'; PMA_queryAsControlUser($ins_query, false); return $GLOBALS['dbi']->insertId( @@ -1705,12 +1705,12 @@ function PMA_getChildReferences($db, $table, $column = '') . " `table_schema`, `referenced_column_name`" . " FROM `information_schema`.`key_column_usage`" . " WHERE `referenced_table_name` = '" - . PMA\libraries\Util::sqlAddSlashes($table) . "'" + . $GLOBALS['dbi']->escapeString($table) . "'" . " AND `referenced_table_schema` = '" - . PMA\libraries\Util::sqlAddSlashes($db) . "'"; + . $GLOBALS['dbi']->escapeString($db) . "'"; if ($column) { $rel_query .= " AND `referenced_column_name` = '" - . PMA\libraries\Util::sqlAddSlashes($column) . "'"; + . $GLOBALS['dbi']->escapeString($column) . "'"; } $child_references = $GLOBALS['dbi']->fetchResult( diff --git a/libraries/relation_cleanup.lib.php b/libraries/relation_cleanup.lib.php index e5502acc9b..ac4a94cd1a 100644 --- a/libraries/relation_cleanup.lib.php +++ b/libraries/relation_cleanup.lib.php @@ -23,10 +23,10 @@ function PMA_relationsCleanupColumn($db, $table, $column) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND column_name = \'' . PMA\libraries\Util::sqlAddSlashes($column) + . ' AND column_name = \'' . $GLOBALS['dbi']->escapeString($column) . '\''; PMA_queryAsControlUser($remove_query); } @@ -35,10 +35,10 @@ function PMA_relationsCleanupColumn($db, $table, $column) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND display_field = \'' . PMA\libraries\Util::sqlAddSlashes($column) + . ' AND display_field = \'' . $GLOBALS['dbi']->escapeString($column) . '\''; PMA_queryAsControlUser($remove_query); } @@ -47,22 +47,22 @@ function PMA_relationsCleanupColumn($db, $table, $column) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' WHERE master_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE master_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND master_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND master_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND master_field = \'' . PMA\libraries\Util::sqlAddSlashes($column) + . ' AND master_field = \'' . $GLOBALS['dbi']->escapeString($column) . '\''; PMA_queryAsControlUser($remove_query); $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' WHERE foreign_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE foreign_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND foreign_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND foreign_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' AND foreign_field = \'' . PMA\libraries\Util::sqlAddSlashes($column) + . ' AND foreign_field = \'' . $GLOBALS['dbi']->escapeString($column) . '\''; PMA_queryAsControlUser($remove_query); } @@ -84,8 +84,8 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); } @@ -94,8 +94,8 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); } @@ -104,8 +104,8 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); } @@ -114,18 +114,18 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' WHERE master_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE master_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND master_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND master_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' WHERE foreign_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE foreign_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' - . ' AND foreign_table = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' AND foreign_table = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); } @@ -134,8 +134,8 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_uiprefs']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\''; PMA_queryAsControlUser($remove_query); } @@ -144,10 +144,10 @@ function PMA_relationsCleanupTable($db, $table) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['navigationhiding']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\'' - . ' AND (table_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\'' + . ' AND (table_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' - . ' OR (item_name = \'' . PMA\libraries\Util::sqlAddSlashes($table) + . ' OR (item_name = \'' . $GLOBALS['dbi']->escapeString($table) . '\'' . ' AND item_type = \'table\'))'; PMA_queryAsControlUser($remove_query); @@ -169,7 +169,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -177,7 +177,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['bookmark']) - . ' WHERE dbase = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE dbase = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -185,7 +185,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_info']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -193,13 +193,13 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['pdf_pages']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_coords']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -208,13 +208,13 @@ function PMA_relationsCleanupDatabase($db) . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) . ' WHERE master_db = \'' - . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['relation']) - . ' WHERE foreign_db = \'' . PMA\libraries\Util::sqlAddSlashes($db) + . ' WHERE foreign_db = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -223,7 +223,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['table_uiprefs']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -231,7 +231,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['navigationhiding']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -239,7 +239,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['savedsearches']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } @@ -247,7 +247,7 @@ function PMA_relationsCleanupDatabase($db) $remove_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['central_columns']) - . ' WHERE db_name = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\''; + . ' WHERE db_name = \'' . $GLOBALS['dbi']->escapeString($db) . '\''; PMA_queryAsControlUser($remove_query); } } @@ -267,7 +267,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['bookmark']) - . " WHERE `user` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `user` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -276,7 +276,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['history']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -285,7 +285,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['recent']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -294,7 +294,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['favorite']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -303,7 +303,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['table_uiprefs']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -312,7 +312,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['userconfig']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -321,7 +321,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['users']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -330,7 +330,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['navigationhiding']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -339,7 +339,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['savedsearches']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } @@ -348,7 +348,7 @@ function PMA_relationsCleanupUser($username) $remove_query = "DELETE FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['designer_settings']) - . " WHERE `username` = '" . PMA\libraries\Util::sqlAddSlashes($username) + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; PMA_queryAsControlUser($remove_query); } diff --git a/libraries/replication.inc.php b/libraries/replication.inc.php index 41f778a233..f10bbfafd4 100644 --- a/libraries/replication.inc.php +++ b/libraries/replication.inc.php @@ -28,7 +28,7 @@ if (! empty($_REQUEST['master_connection'])) { if ($server_slave_multi_replication) { $GLOBALS['dbi']->query( "SET @@default_master_connection = '" - . PMA\libraries\Util::sqlAddSlashes( + . $GLOBALS['dbi']->escapeString( $_REQUEST['master_connection'] ) . "'" ); diff --git a/libraries/replication_gui.lib.php b/libraries/replication_gui.lib.php index 3cda3498ec..82620916b3 100644 --- a/libraries/replication_gui.lib.php +++ b/libraries/replication_gui.lib.php @@ -963,13 +963,13 @@ function PMA_handleRequestForSlaveChangeMaster() { $sr = array(); $_SESSION['replication']['m_username'] = $sr['username'] - = PMA\libraries\Util::sqlAddSlashes($_REQUEST['username']); + = $GLOBALS['dbi']->escapeString($_REQUEST['username']); $_SESSION['replication']['m_password'] = $sr['pma_pw'] - = PMA\libraries\Util::sqlAddSlashes($_REQUEST['pma_pw']); + = $GLOBALS['dbi']->escapeString($_REQUEST['pma_pw']); $_SESSION['replication']['m_hostname'] = $sr['hostname'] - = PMA\libraries\Util::sqlAddSlashes($_REQUEST['hostname']); + = $GLOBALS['dbi']->escapeString($_REQUEST['hostname']); $_SESSION['replication']['m_port'] = $sr['port'] - = PMA\libraries\Util::sqlAddSlashes($_REQUEST['text_port']); + = $GLOBALS['dbi']->escapeString($_REQUEST['text_port']); $_SESSION['replication']['m_correct'] = ''; $_SESSION['replication']['sr_action_status'] = 'error'; $_SESSION['replication']['sr_action_info'] = __('Unknown error'); diff --git a/libraries/rte/rte_events.lib.php b/libraries/rte/rte_events.lib.php index cd446e886b..121de05416 100644 --- a/libraries/rte/rte_events.lib.php +++ b/libraries/rte/rte_events.lib.php @@ -287,8 +287,8 @@ function PMA_EVN_getDataFromName($name) . "`INTERVAL_VALUE`, `INTERVAL_FIELD`, `STARTS`, `ENDS`, " . "`EVENT_DEFINITION`, `ON_COMPLETION`, `DEFINER`, `EVENT_COMMENT`"; $where = "EVENT_SCHEMA " . PMA\libraries\Util::getCollateForIS() . "=" - . "'" . PMA\libraries\Util::sqlAddSlashes($db) . "' " - . "AND EVENT_NAME='" . PMA\libraries\Util::sqlAddSlashes($name) . "'"; + . "'" . $GLOBALS['dbi']->escapeString($db) . "' " + . "AND EVENT_NAME='" . $GLOBALS['dbi']->escapeString($name) . "'"; $query = "SELECT $columns FROM `INFORMATION_SCHEMA`.`EVENTS` WHERE $where;"; $item = $GLOBALS['dbi']->fetchSingleRow($query); if (! $item) { @@ -561,18 +561,18 @@ function PMA_EVN_getQueryFromRequest() } if (! empty($_REQUEST['item_starts'])) { $query .= "STARTS '" - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['item_starts']) + . $GLOBALS['dbi']->escapeString($_REQUEST['item_starts']) . "' "; } if (! empty($_REQUEST['item_ends'])) { $query .= "ENDS '" - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['item_ends']) + . $GLOBALS['dbi']->escapeString($_REQUEST['item_ends']) . "' "; } } else { if (! empty($_REQUEST['item_execute_at'])) { $query .= "AT '" - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['item_execute_at']) + . $GLOBALS['dbi']->escapeString($_REQUEST['item_execute_at']) . "' "; } else { $errors[] diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 0f901a369d..cee08f43c0 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -588,9 +588,9 @@ function PMA_RTN_getDataFromName($name, $type, $all = true, $control = false) . "ROUTINE_DEFINITION, IS_DETERMINISTIC, SQL_DATA_ACCESS, " . "ROUTINE_COMMENT, SECURITY_TYPE"; $where = "ROUTINE_SCHEMA " . PMA\libraries\Util::getCollateForIS() . "=" - . "'" . PMA\libraries\Util::sqlAddSlashes($db) . "' " - . "AND SPECIFIC_NAME='" . PMA\libraries\Util::sqlAddSlashes($name) . "'" - . "AND ROUTINE_TYPE='" . PMA\libraries\Util::sqlAddSlashes($type) . "'"; + . "'" . $GLOBALS['dbi']->escapeString($db) . "' " + . "AND SPECIFIC_NAME='" . $GLOBALS['dbi']->escapeString($name) . "'" + . "AND ROUTINE_TYPE='" . $GLOBALS['dbi']->escapeString($type) . "'"; $query = "SELECT $fields FROM INFORMATION_SCHEMA.ROUTINES WHERE $where;"; $routine = $GLOBALS['dbi']->fetchSingleRow($query, 'ASSOC', $link); @@ -1342,7 +1342,7 @@ function PMA_RTN_handleExecute() if (is_array($value)) { // is SET type $value = implode(',', $value); } - $value = PMA\libraries\Util::sqlAddSlashes($value); + $value = $GLOBALS['dbi']->escapeString($value); if (! empty($_REQUEST['funcs'][$routine['item_param_name'][$i]]) && in_array( $_REQUEST['funcs'][$routine['item_param_name'][$i]], diff --git a/libraries/rte/rte_triggers.lib.php b/libraries/rte/rte_triggers.lib.php index fc077ad501..c28aab88db 100644 --- a/libraries/rte/rte_triggers.lib.php +++ b/libraries/rte/rte_triggers.lib.php @@ -310,7 +310,7 @@ function PMA_TRI_getEditorForm($mode, $item) . "type='hidden' value='{$item['item_original_name']}'/>\n"; } $query = "SELECT `TABLE_NAME` FROM `INFORMATION_SCHEMA`.`TABLES` "; - $query .= "WHERE `TABLE_SCHEMA`='" . PMA\libraries\Util::sqlAddSlashes($db) . "' "; + $query .= "WHERE `TABLE_SCHEMA`='" . $GLOBALS['dbi']->escapeString($db) . "' "; $query .= "AND `TABLE_TYPE`='BASE TABLE'"; $tables = $GLOBALS['dbi']->fetchResult($query); diff --git a/libraries/server_privileges.lib.php b/libraries/server_privileges.lib.php index 0c50ea119d..c2ede5fd93 100644 --- a/libraries/server_privileges.lib.php +++ b/libraries/server_privileges.lib.php @@ -83,9 +83,9 @@ function PMA_rangeOfUsers($initial = '') } $ret = " WHERE `User` LIKE '" - . Util::sqlAddSlashes($initial, true) . "%'" + . $GLOBALS['dbi']->escapeString($initial) . "%'" . " OR `User` LIKE '" - . Util::sqlAddSlashes(mb_strtolower($initial), true) + . $GLOBALS['dbi']->escapeString(mb_strtolower($initial)) . "%'"; return $ret; } // end function @@ -492,21 +492,21 @@ function PMA_getSqlQueryForDisplayPrivTable($db, $table, $username, $hostname) { if ($db == '*') { return "SELECT * FROM `mysql`.`user`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "';"; + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "';"; } elseif ($table == '*') { return "SELECT * FROM `mysql`.`db`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "'" - . " AND '" . Util::sqlAddSlashes(Util::unescapeMysqlWildcards($db)) . "'" + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "'" + . " AND '" . $GLOBALS['dbi']->escapeString(Util::unescapeMysqlWildcards($db)) . "'" . " LIKE `Db`;"; } return "SELECT `Table_priv`" . " FROM `mysql`.`tables_priv`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "'" - . " AND `Db` = '" . Util::sqlAddSlashes(Util::unescapeMysqlWildcards($db)) . "'" - . " AND `Table_name` = '" . Util::sqlAddSlashes($table) . "';"; + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "'" + . " AND `Db` = '" . $GLOBALS['dbi']->escapeString(Util::unescapeMysqlWildcards($db)) . "'" + . " AND `Table_name` = '" . $GLOBALS['dbi']->escapeString($table) . "';"; } /** @@ -545,7 +545,7 @@ function PMA_getHtmlToChooseUserGroup($username) $userGroup = ''; if (isset($GLOBALS['username'])) { $sql_query = "SELECT `usergroup` FROM " . $userTable - . " WHERE `username` = '" . Util::sqlAddSlashes($username) . "'"; + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; $userGroup = $GLOBALS['dbi']->fetchValue( $sql_query, 0, 0, $GLOBALS['controllink'] ); @@ -583,23 +583,23 @@ function PMA_setUserGroup($username, $userGroup) . "." . Util::backquote($cfgRelation['users']); $sql_query = "SELECT `usergroup` FROM " . $userTable - . " WHERE `username` = '" . Util::sqlAddSlashes($username) . "'"; + . " WHERE `username` = '" . $GLOBALS['dbi']->escapeString($username) . "'"; $oldUserGroup = $GLOBALS['dbi']->fetchValue( $sql_query, 0, 0, $GLOBALS['controllink'] ); if ($oldUserGroup === false) { $upd_query = "INSERT INTO " . $userTable . "(`username`, `usergroup`)" - . " VALUES ('" . Util::sqlAddSlashes($username) . "', " - . "'" . Util::sqlAddSlashes($userGroup) . "')"; + . " VALUES ('" . $GLOBALS['dbi']->escapeString($username) . "', " + . "'" . $GLOBALS['dbi']->escapeString($userGroup) . "')"; } else { if (empty($userGroup)) { $upd_query = "DELETE FROM " . $userTable - . " WHERE `username`='" . Util::sqlAddSlashes($username) . "'"; + . " WHERE `username`='" . $GLOBALS['dbi']->escapeString($username) . "'"; } elseif ($oldUserGroup != $userGroup) { $upd_query = "UPDATE " . $userTable - . " SET `usergroup`='" . Util::sqlAddSlashes($userGroup) . "'" - . " WHERE `username`='" . Util::sqlAddSlashes($username) . "'"; + . " SET `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "'" + . " WHERE `username`='" . $GLOBALS['dbi']->escapeString($username) . "'"; } } if (isset($upd_query)) { @@ -979,11 +979,11 @@ function PMA_getHtmlForRoutineSpecificPrivilges( $sql = "SELECT `Proc_priv`" . " FROM `mysql`.`procs_priv`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "'" + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "'" . " AND `Db` = '" - . Util::sqlAddSlashes(Util::unescapeMysqlWildcards($db)) . "'" - . " AND `Routine_name` LIKE '" . Util::sqlAddSlashes($routine) . "';"; + . $GLOBALS['dbi']->escapeString(Util::unescapeMysqlWildcards($db)) . "'" + . " AND `Routine_name` LIKE '" . $GLOBALS['dbi']->escapeString($routine) . "';"; $res = $GLOBALS['dbi']->fetchValue($sql); $privs = array( @@ -1069,15 +1069,15 @@ function PMA_getHtmlForTableSpecificPrivileges( 'SELECT `Column_name`, `Column_priv`' . ' FROM `mysql`.`columns_priv`' . ' WHERE `User`' - . ' = \'' . Util::sqlAddSlashes($username) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($username) . "'" . ' AND `Host`' - . ' = \'' . Util::sqlAddSlashes($hostname) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($hostname) . "'" . ' AND `Db`' - . ' = \'' . Util::sqlAddSlashes( + . ' = \'' . $GLOBALS['dbi']->escapeString( Util::unescapeMysqlWildcards($db) ) . "'" . ' AND `Table_name`' - . ' = \'' . Util::sqlAddSlashes($table) . '\';' + . ' = \'' . $GLOBALS['dbi']->escapeString($table) . '\';' ); while ($row1 = $GLOBALS['dbi']->fetchRow($res)) { @@ -1968,8 +1968,8 @@ function PMA_getGrants($user, $host) { $grants = $GLOBALS['dbi']->fetchResult( "SHOW GRANTS FOR '" - . Util::sqlAddSlashes($user) . "'@'" - . Util::sqlAddSlashes($host) . "'" + . $GLOBALS['dbi']->escapeString($user) . "'@'" + . $GLOBALS['dbi']->escapeString($host) . "'" ); $response = ''; foreach ($grants as $one_grant) { @@ -2023,15 +2023,15 @@ function PMA_updatePassword($err_url, $username, $hostname) ) { if ($authentication_plugin != 'mysql_old_password') { $query_prefix = "ALTER USER '" - . Util::sqlAddSlashes($username) - . "'@'" . Util::sqlAddSlashes($hostname) . "'" + . $GLOBALS['dbi']->escapeString($username) + . "'@'" . $GLOBALS['dbi']->escapeString($hostname) . "'" . " IDENTIFIED WITH " . $authentication_plugin . " BY '"; } else { $query_prefix = "ALTER USER '" - . Util::sqlAddSlashes($username) - . "'@'" . Util::sqlAddSlashes($hostname) . "'" + . $GLOBALS['dbi']->escapeString($username) + . "'@'" . $GLOBALS['dbi']->escapeString($hostname) . "'" . " IDENTIFIED BY '"; } @@ -2039,7 +2039,7 @@ function PMA_updatePassword($err_url, $username, $hostname) $sql_query = $query_prefix . "*'"; $local_query = $query_prefix - . Util::sqlAddSlashes($_POST['pma_pw']) . "'"; + . $GLOBALS['dbi']->escapeString($_POST['pma_pw']) . "'"; } else if ($serverType == 'MariaDB' && PMA_MYSQL_INT_VERSION >= 50200 && $is_superuser @@ -2059,8 +2059,8 @@ function PMA_updatePassword($err_url, $username, $hostname) $hashedPassword = PMA_getHashedPassword($_POST['pma_pw']); $sql_query = 'SET PASSWORD FOR \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\' = ' + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\' = ' . (($_POST['pma_pw'] == '') ? '\'\'' : $hashing_function . '(\'' @@ -2104,18 +2104,18 @@ function PMA_updatePassword($err_url, $username, $hostname) $GLOBALS['dbi']->tryQuery('SET `old_passwords` = 2;'); } $sql_query = 'SET PASSWORD FOR \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\' = ' + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\' = ' . (($_POST['pma_pw'] == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $_POST['pma_pw']) . '\')'); $local_query = 'SET PASSWORD FOR \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\' = ' + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\' = ' . (($_POST['pma_pw'] == '') ? '\'\'' : $hashing_function - . '(\'' . Util::sqlAddSlashes($_POST['pma_pw']) . '\')'); + . '(\'' . $GLOBALS['dbi']->escapeString($_POST['pma_pw']) . '\')'); } if (!($GLOBALS['dbi']->tryQuery($local_query))) { @@ -2160,12 +2160,12 @@ function PMA_getMessageAndSqlQueryForPrivilegesRevoke($dbname, $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $itemType . ' ' . $db_and_table . ' FROM \'' - . Util::sqlAddSlashes($username) . '\'@\'' - . Util::sqlAddSlashes($hostname) . '\';'; + . $GLOBALS['dbi']->escapeString($username) . '\'@\'' + . $GLOBALS['dbi']->escapeString($hostname) . '\';'; $sql_query1 = 'REVOKE GRANT OPTION ON ' . $itemType . ' ' . $db_and_table - . ' FROM \'' . Util::sqlAddSlashes($username) . '\'@\'' - . Util::sqlAddSlashes($hostname) . '\';'; + . ' FROM \'' . $GLOBALS['dbi']->escapeString($username) . '\'@\'' + . $GLOBALS['dbi']->escapeString($hostname) . '\';'; $GLOBALS['dbi']->query($sql_query0); if (! $GLOBALS['dbi']->tryQuery($sql_query1)) { @@ -2196,15 +2196,15 @@ function PMA_getRequireClause() $require = array(); if (! empty($arr['ssl_cipher'])) { $require[] = "CIPHER '" - . Util::sqlAddSlashes($arr['ssl_cipher']) . "'"; + . $GLOBALS['dbi']->escapeString($arr['ssl_cipher']) . "'"; } if (! empty($arr['x509_issuer'])) { $require[] = "ISSUER '" - . Util::sqlAddSlashes($arr['x509_issuer']) . "'"; + . $GLOBALS['dbi']->escapeString($arr['x509_issuer']) . "'"; } if (! empty($arr['x509_subject'])) { $require[] = "SUBJECT '" - . Util::sqlAddSlashes($arr['x509_subject']) . "'"; + . $GLOBALS['dbi']->escapeString($arr['x509_subject']) . "'"; } if (count($require)) { $require_clause = " REQUIRE " . implode(" AND ", $require); @@ -2396,7 +2396,7 @@ function PMA_getListOfPrivilegesAndComparedPrivileges() */ function PMA_getHtmlTableBodyForSpecificDbRoutinePrivs($db, $odd_row, $index_checkbox) { - $sql_query = 'SELECT * FROM `mysql`.`procs_priv` WHERE Db = \'' . Util::sqlAddSlashes($db) . '\';'; + $sql_query = 'SELECT * FROM `mysql`.`procs_priv` WHERE Db = \'' . $GLOBALS['dbi']->escapeString($db) . '\';'; $res = $GLOBALS['dbi']->query($sql_query); $html_output = ''; while ($row = $GLOBALS['dbi']->fetchAssoc($res)) { @@ -2555,8 +2555,8 @@ function PMA_getHtmlForSpecificTablePrivileges($db, $table) $sql_query = "SELECT `User`, `Host`, `Db`," . " 't' AS `Type`, `Table_name`, `Table_priv`" . " FROM `mysql`.`tables_priv`" - . " WHERE '" . Util::sqlAddSlashes($db) . "' LIKE `Db`" - . " AND '" . Util::sqlAddSlashes($table) . "' LIKE `Table_name`" + . " WHERE '" . $GLOBALS['dbi']->escapeString($db) . "' LIKE `Db`" + . " AND '" . $GLOBALS['dbi']->escapeString($table) . "' LIKE `Table_name`" . " AND NOT (`Table_priv` = '' AND Column_priv = '')" . " ORDER BY `User` ASC, `Host` ASC, `Db` ASC, `Table_priv` ASC;"; $res = $GLOBALS['dbi']->query($sql_query); @@ -2604,7 +2604,7 @@ function PMA_getPrivMap($db) . "(" . " SELECT " . $listOfPrivs . ", `Db`, 'd' AS `Type`" . " FROM `mysql`.`db`" - . " WHERE '" . Util::sqlAddSlashes($db) . "' LIKE `Db`" + . " WHERE '" . $GLOBALS['dbi']->escapeString($db) . "' LIKE `Db`" . " AND NOT (" . $listOfComparedPrivs . ")" . ")" . " ORDER BY `User` ASC, `Host` ASC, `Db` ASC;"; @@ -3272,9 +3272,9 @@ function PMA_getLinkToDbAndTable($url_dbname, $dbname, $tablename) function PMA_getUserSpecificRights($username, $hostname, $type, $dbname = '') { $user_host_condition = " WHERE `User`" - . " = '" . Util::sqlAddSlashes($username) . "'" + . " = '" . $GLOBALS['dbi']->escapeString($username) . "'" . " AND `Host`" - . " = '" . Util::sqlAddSlashes($hostname) . "'"; + . " = '" . $GLOBALS['dbi']->escapeString($hostname) . "'"; if ($type == 'database') { $tables_to_search_for_users = array( @@ -3283,12 +3283,12 @@ function PMA_getUserSpecificRights($username, $hostname, $type, $dbname = '') $dbOrTableName = 'Db'; } elseif ($type == 'table') { $user_host_condition .= " AND `Db` LIKE '" - . Util::sqlAddSlashes($dbname, true) . "'"; + . $GLOBALS['dbi']->escapeString($dbname, true) . "'"; $tables_to_search_for_users = array('columns_priv',); $dbOrTableName = 'Table_name'; } else { // routine $user_host_condition .= " AND `Db` LIKE '" - . Util::sqlAddSlashes($dbname, true) . "'"; + . $GLOBALS['dbi']->escapeString($dbname, true) . "'"; $tables_to_search_for_users = array('procs_priv',); $dbOrTableName = 'Routine_name'; } @@ -4000,13 +4000,13 @@ function PMA_updatePrivileges($username, $hostname, $tablename, $dbname, $itemTy $db_and_table = PMA_wildcardEscapeForGrant($dbname, $tablename); $sql_query0 = 'REVOKE ALL PRIVILEGES ON ' . $itemType . ' ' . $db_and_table - . ' FROM \'' . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\';'; + . ' FROM \'' . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\';'; if (! isset($_POST['Grant_priv']) || $_POST['Grant_priv'] != 'Y') { $sql_query1 = 'REVOKE GRANT OPTION ON ' . $itemType . ' ' . $db_and_table - . ' FROM \'' . Util::sqlAddSlashes($username) . '\'@\'' - . Util::sqlAddSlashes($hostname) . '\';'; + . ' FROM \'' . $GLOBALS['dbi']->escapeString($username) . '\'@\'' + . $GLOBALS['dbi']->escapeString($hostname) . '\';'; } else { $sql_query1 = ''; } @@ -4018,8 +4018,8 @@ function PMA_updatePrivileges($username, $hostname, $tablename, $dbname, $itemTy ) { $sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON ' . $itemType . ' ' . $db_and_table - . ' TO \'' . Util::sqlAddSlashes($username) . '\'@\'' - . Util::sqlAddSlashes($hostname) . '\''; + . ' TO \'' . $GLOBALS['dbi']->escapeString($username) . '\'@\'' + . $GLOBALS['dbi']->escapeString($hostname) . '\''; if (! mb_strlen($dbname)) { // add REQUIRE clause @@ -4073,9 +4073,9 @@ function PMA_getDataForChangeOrCopyUser() if (isset($_REQUEST['change_copy'])) { $user_host_condition = ' WHERE `User` = ' - . "'" . Util::sqlAddSlashes($_REQUEST['old_username']) . "'" + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['old_username']) . "'" . ' AND `Host` = ' - . "'" . Util::sqlAddSlashes($_REQUEST['old_hostname']) . "';"; + . "'" . $GLOBALS['dbi']->escapeString($_REQUEST['old_hostname']) . "';"; $row = $GLOBALS['dbi']->fetchSingleRow( 'SELECT * FROM `mysql`.`user` ' . $user_host_condition ); @@ -4164,8 +4164,8 @@ function PMA_getDataForDeleteUsers($queries) ) . ' ...'; $queries[] = 'DROP USER \'' - . Util::sqlAddSlashes($this_user) - . '\'@\'' . Util::sqlAddSlashes($this_host) . '\';'; + . $GLOBALS['dbi']->escapeString($this_user) + . '\'@\'' . $GLOBALS['dbi']->escapeString($this_host) . '\';'; PMA_relationsCleanupUser($this_user); if (isset($_REQUEST['drop_users_db'])) { @@ -4277,8 +4277,8 @@ function PMA_addUser( break; } $sql = "SELECT '1' FROM `mysql`.`user`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "';"; + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "';"; if ($GLOBALS['dbi']->fetchValue($sql) == 1) { $message = Message::error(__('The user %s already exists!')); $message->addParam( @@ -4902,8 +4902,8 @@ function PMA_getHtmlForUserProperties($dbname_is_wildcard,$url_dbname, ); $sql = "SELECT '1' FROM `mysql`.`user`" - . " WHERE `User` = '" . Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . Util::sqlAddSlashes($hostname) . "';"; + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "';"; $user_does_not_exists = (bool) ! $GLOBALS['dbi']->fetchValue($sql); @@ -5010,13 +5010,13 @@ function PMA_getTablePrivsQueriesForChangeOrCopyUser($user_host_condition, 'SELECT `Column_name`, `Column_priv`' . ' FROM `mysql`.`columns_priv`' . ' WHERE `User`' - . ' = \'' . Util::sqlAddSlashes($_REQUEST['old_username']) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['old_username']) . "'" . ' AND `Host`' - . ' = \'' . Util::sqlAddSlashes($_REQUEST['old_username']) . '\'' + . ' = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['old_username']) . '\'' . ' AND `Db`' - . ' = \'' . Util::sqlAddSlashes($row['Db']) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($row['Db']) . "'" . ' AND `Table_name`' - . ' = \'' . Util::sqlAddSlashes($row['Table_name']) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($row['Table_name']) . "'" . ';', null, PMA\libraries\DatabaseInterface::QUERY_STORE @@ -5064,8 +5064,8 @@ function PMA_getTablePrivsQueriesForChangeOrCopyUser($user_host_condition, $queries[] = 'GRANT ' . join(', ', $tmp_privs1) . ' ON ' . Util::backquote($row['Db']) . '.' . Util::backquote($row['Table_name']) - . ' TO \'' . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\'' + . ' TO \'' . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\'' . (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION;' : ';'); @@ -5086,9 +5086,9 @@ function PMA_getDbSpecificPrivsQueriesForChangeOrCopyUser( $queries, $username, $hostname ) { $user_host_condition = ' WHERE `User`' - . ' = \'' . Util::sqlAddSlashes($_REQUEST['old_username']) . "'" + . ' = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['old_username']) . "'" . ' AND `Host`' - . ' = \'' . Util::sqlAddSlashes($_REQUEST['old_hostname']) . '\';'; + . ' = \'' . $GLOBALS['dbi']->escapeString($_REQUEST['old_hostname']) . '\';'; $res = $GLOBALS['dbi']->query( 'SELECT * FROM `mysql`.`db`' . $user_host_condition @@ -5097,8 +5097,8 @@ function PMA_getDbSpecificPrivsQueriesForChangeOrCopyUser( while ($row = $GLOBALS['dbi']->fetchAssoc($res)) { $queries[] = 'GRANT ' . join(', ', PMA_extractPrivInfo($row)) . ' ON ' . Util::backquote($row['Db']) . '.*' - . ' TO \'' . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\'' + . ' TO \'' . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\'' . ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION;' : ';'); } $GLOBALS['dbi']->freeResult($res); @@ -5140,7 +5140,7 @@ function PMA_addUserAndCreateDatabase($_error, $real_sql_query, $sql_query, // Create database with same name and grant all privileges $q = 'CREATE DATABASE IF NOT EXISTS ' . Util::backquote( - Util::sqlAddSlashes($username) + $GLOBALS['dbi']->escapeString($username) ) . ';'; $sql_query .= $q; if (! $GLOBALS['dbi']->tryQuery($q)) { @@ -5156,11 +5156,11 @@ function PMA_addUserAndCreateDatabase($_error, $real_sql_query, $sql_query, $q = 'GRANT ALL PRIVILEGES ON ' . Util::backquote( Util::escapeMysqlWildcards( - Util::sqlAddSlashes($username) + $GLOBALS['dbi']->escapeString($username) ) ) . '.* TO \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\';'; + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\';'; $sql_query .= $q; if (! $GLOBALS['dbi']->tryQuery($q)) { $message = Message::rawError($GLOBALS['dbi']->getError()); @@ -5172,11 +5172,11 @@ function PMA_addUserAndCreateDatabase($_error, $real_sql_query, $sql_query, $q = 'GRANT ALL PRIVILEGES ON ' . Util::backquote( Util::escapeMysqlWildcards( - Util::sqlAddSlashes($username) + $GLOBALS['dbi']->escapeString($username) ) . '\_%' ) . '.* TO \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\';'; + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\';'; $sql_query .= $q; if (! $GLOBALS['dbi']->tryQuery($q)) { $message = Message::rawError($GLOBALS['dbi']->getError()); @@ -5187,10 +5187,10 @@ function PMA_addUserAndCreateDatabase($_error, $real_sql_query, $sql_query, // Grant all privileges on the specified database to the new user $q = 'GRANT ALL PRIVILEGES ON ' . Util::backquote( - Util::sqlAddSlashes($dbname) + $GLOBALS['dbi']->escapeString($dbname) ) . '.* TO \'' - . Util::sqlAddSlashes($username) - . '\'@\'' . Util::sqlAddSlashes($hostname) . '\';'; + . $GLOBALS['dbi']->escapeString($username) + . '\'@\'' . $GLOBALS['dbi']->escapeString($hostname) . '\';'; $sql_query .= $q; if (! $GLOBALS['dbi']->tryQuery($q)) { $message = Message::rawError($GLOBALS['dbi']->getError()); @@ -5255,9 +5255,9 @@ function PMA_checkIfMariaDBPwdCheckPluginActive() */ function PMA_getSqlQueriesForDisplayAndAddUser($username, $hostname, $password) { - $slashedUsername = Util::sqlAddSlashes($username); - $slashedHostname = Util::sqlAddSlashes($hostname); - $slashedPassword = Util::sqlAddSlashes($password); + $slashedUsername = $GLOBALS['dbi']->escapeString($username); + $slashedHostname = $GLOBALS['dbi']->escapeString($hostname); + $slashedPassword = $GLOBALS['dbi']->escapeString($password); $serverType = Util::getServerType(); $create_user_stmt = sprintf( diff --git a/libraries/server_status_monitor.lib.php b/libraries/server_status_monitor.lib.php index f0b6d90df9..c341cccac4 100644 --- a/libraries/server_status_monitor.lib.php +++ b/libraries/server_status_monitor.lib.php @@ -744,7 +744,7 @@ function PMA_getSuspensionPoints($lastChar) function PMA_getJsonForLoggingVars() { if (isset($_REQUEST['varName']) && isset($_REQUEST['varValue'])) { - $value = PMA\libraries\Util::sqlAddSlashes($_REQUEST['varValue']); + $value = $GLOBALS['dbi']->escapeString($_REQUEST['varValue']); if (! is_numeric($value)) { $value="'" . $value . "'"; } diff --git a/libraries/server_user_groups.lib.php b/libraries/server_user_groups.lib.php index 6b033b4cb1..add1f1dd7b 100644 --- a/libraries/server_user_groups.lib.php +++ b/libraries/server_user_groups.lib.php @@ -23,7 +23,7 @@ function PMA_getHtmlForListingUsersofAGroup($userGroup) $usersTable = PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['users']); $sql_query = "SELECT `username` FROM " . $usersTable - . " WHERE `usergroup`='" . PMA\libraries\Util::sqlAddSlashes($userGroup) + . " WHERE `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "'"; $result = PMA_queryAsControlUser($sql_query, false); if ($result) { @@ -186,11 +186,11 @@ function PMA_deleteUserGroup($userGroup) $groupTable = PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['usergroups']); $sql_query = "DELETE FROM " . $userTable - . " WHERE `usergroup`='" . PMA\libraries\Util::sqlAddSlashes($userGroup) + . " WHERE `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "'"; PMA_queryAsControlUser($sql_query, true); $sql_query = "DELETE FROM " . $groupTable - . " WHERE `usergroup`='" . PMA\libraries\Util::sqlAddSlashes($userGroup) + . " WHERE `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "'"; PMA_queryAsControlUser($sql_query, true); } @@ -249,7 +249,7 @@ function PMA_getHtmlToEditUserGroup($userGroup = null) $groupTable = PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['usergroups']); $sql_query = "SELECT * FROM " . $groupTable - . " WHERE `usergroup`='" . PMA\libraries\Util::sqlAddSlashes($userGroup) + . " WHERE `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "'"; $result = PMA_queryAsControlUser($sql_query, false); if ($result) { @@ -336,7 +336,7 @@ function PMA_editUserGroup($userGroup, $new = false) if (! $new) { $sql_query = "DELETE FROM " . $groupTable - . " WHERE `usergroup`='" . PMA\libraries\Util::sqlAddSlashes($userGroup) + . " WHERE `usergroup`='" . $GLOBALS['dbi']->escapeString($userGroup) . "';"; PMA_queryAsControlUser($sql_query, true); } @@ -352,7 +352,7 @@ function PMA_editUserGroup($userGroup, $new = false) } $tabName = $tabGroupName . '_' . $tab; $allowed = isset($_REQUEST[$tabName]) && $_REQUEST[$tabName] == 'Y'; - $sql_query .= "('" . PMA\libraries\Util::sqlAddSlashes($userGroup) . "', '" . $tabName . "', '" + $sql_query .= "('" . $GLOBALS['dbi']->escapeString($userGroup) . "', '" . $tabName . "', '" . ($allowed ? "Y" : "N") . "')"; $first = false; } diff --git a/libraries/sql.lib.php b/libraries/sql.lib.php index 91864bd8a4..c61452660f 100644 --- a/libraries/sql.lib.php +++ b/libraries/sql.lib.php @@ -887,7 +887,7 @@ function PMA_getDefaultSqlQueryForBrowse($db, $table) include_once 'libraries/bookmark.lib.php'; $book_sql_query = PMA_Bookmark_get( $db, - '\'' . PMA\libraries\Util::sqlAddSlashes($table) . '\'', + '\'' . $GLOBALS['dbi']->escapeString($table) . '\'', 'label', false, true diff --git a/libraries/tracking.lib.php b/libraries/tracking.lib.php index d435368cb2..b0ee37158e 100644 --- a/libraries/tracking.lib.php +++ b/libraries/tracking.lib.php @@ -244,10 +244,10 @@ function PMA_getListOfVersionsOfTable() $sql_query = " SELECT * FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['tracking']) . - " WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($_REQUEST['db']) . + " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($_REQUEST['db']) . "' " . " AND table_name = '" . - PMA\libraries\Util::sqlAddSlashes($_REQUEST['table']) . "' " . + $GLOBALS['dbi']->escapeString($_REQUEST['table']) . "' " . " ORDER BY version DESC "; return PMA_queryAsControlUser($sql_query); @@ -404,7 +404,7 @@ function PMA_getSQLResultForSelectableTables() $sql_query = " SELECT DISTINCT db_name, table_name FROM " . PMA\libraries\Util::backquote($cfgRelation['db']) . "." . PMA\libraries\Util::backquote($cfgRelation['tracking']) . - " WHERE db_name = '" . PMA\libraries\Util::sqlAddSlashes($GLOBALS['db']) . + " WHERE db_name = '" . $GLOBALS['dbi']->escapeString($GLOBALS['db']) . "' " . " ORDER BY db_name, table_name"; @@ -1646,9 +1646,9 @@ function PMA_displayTrackedTables( PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['tracking']) . ' WHERE `db_name` = \'' - . PMA\libraries\Util::sqlAddSlashes($_REQUEST['db']) + . $GLOBALS['dbi']->escapeString($_REQUEST['db']) . '\' AND `table_name` = \'' - . PMA\libraries\Util::sqlAddSlashes($table_name) + . $GLOBALS['dbi']->escapeString($table_name) . '\' AND `version` = \'' . $version_number . '\''; $table_result = PMA_queryAsControlUser($table_query); diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php index 2e1276319b..d3caaff62b 100644 --- a/libraries/transformations.lib.php +++ b/libraries/transformations.lib.php @@ -236,8 +236,8 @@ function PMA_getMIME($db, $table, $strict = false, $fullName = false) `input_transformation_options` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) . ' - WHERE `db_name` = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\' - AND `table_name` = \'' . PMA\libraries\Util::sqlAddSlashes($table) . '\' + WHERE `db_name` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' + AND `table_name` = \'' . $GLOBALS['dbi']->escapeString($table) . '\' AND ( `mimetype` != \'\'' . (!$strict ? ' OR `transformation` != \'\' OR `transformation_options` != \'\' @@ -331,9 +331,9 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, `comment` FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']) . ' - WHERE `db_name` = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\' - AND `table_name` = \'' . PMA\libraries\Util::sqlAddSlashes($table) . '\' - AND `column_name` = \'' . PMA\libraries\Util::sqlAddSlashes($key) . '\''; + WHERE `db_name` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' + AND `table_name` = \'' . $GLOBALS['dbi']->escapeString($table) . '\' + AND `column_name` = \'' . $GLOBALS['dbi']->escapeString($key) . '\''; $test_rs = PMA_queryAsControlUser( $test_qry, true, PMA\libraries\DatabaseInterface::QUERY_STORE @@ -354,25 +354,25 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, . PMA\libraries\Util::backquote($cfgRelation['column_info']) . ' SET ' . '`mimetype` = \'' - . PMA\libraries\Util::sqlAddSlashes($mimetype) . '\', ' + . $GLOBALS['dbi']->escapeString($mimetype) . '\', ' . '`transformation` = \'' - . PMA\libraries\Util::sqlAddSlashes($transformation) . '\', ' + . $GLOBALS['dbi']->escapeString($transformation) . '\', ' . '`transformation_options` = \'' - . PMA\libraries\Util::sqlAddSlashes($transformationOpts) . '\', ' + . $GLOBALS['dbi']->escapeString($transformationOpts) . '\', ' . '`input_transformation` = \'' - . PMA\libraries\Util::sqlAddSlashes($inputTransform) . '\', ' + . $GLOBALS['dbi']->escapeString($inputTransform) . '\', ' . '`input_transformation_options` = \'' - . PMA\libraries\Util::sqlAddSlashes($inputTransformOpts) . '\''; + . $GLOBALS['dbi']->escapeString($inputTransformOpts) . '\''; } else { $upd_query = 'DELETE FROM ' . PMA\libraries\Util::backquote($cfgRelation['db']) . '.' . PMA\libraries\Util::backquote($cfgRelation['column_info']); } $upd_query .= ' - WHERE `db_name` = \'' . PMA\libraries\Util::sqlAddSlashes($db) . '\' - AND `table_name` = \'' . PMA\libraries\Util::sqlAddSlashes($table) + WHERE `db_name` = \'' . $GLOBALS['dbi']->escapeString($db) . '\' + AND `table_name` = \'' . $GLOBALS['dbi']->escapeString($table) . '\' - AND `column_name` = \'' . PMA\libraries\Util::sqlAddSlashes($key) + AND `column_name` = \'' . $GLOBALS['dbi']->escapeString($key) . '\''; } elseif (mb_strlen($mimetype) || mb_strlen($transformation) @@ -386,14 +386,14 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation, . 'transformation, transformation_options, ' . 'input_transformation, input_transformation_options) ' . ' VALUES(' - . '\'' . PMA\libraries\Util::sqlAddSlashes($db) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($table) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($key) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($mimetype) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($transformation) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($transformationOpts) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($inputTransform) . '\',' - . '\'' . PMA\libraries\Util::sqlAddSlashes($inputTransformOpts) . '\')'; + . '\'' . $GLOBALS['dbi']->escapeString($db) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($table) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($key) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($mimetype) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($transformation) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($transformationOpts) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($inputTransform) . '\',' + . '\'' . $GLOBALS['dbi']->escapeString($inputTransformOpts) . '\')'; } if (isset($upd_query)) { diff --git a/libraries/user_preferences.lib.php b/libraries/user_preferences.lib.php index 966b47f3cd..7e8b5de523 100644 --- a/libraries/user_preferences.lib.php +++ b/libraries/user_preferences.lib.php @@ -64,7 +64,7 @@ function PMA_loadUserprefs() $query = 'SELECT `config_data`, UNIX_TIMESTAMP(`timevalue`) ts' . ' FROM ' . $query_table . ' WHERE `username` = \'' - . PMA\libraries\Util::sqlAddSlashes($cfgRelation['user']) + . $GLOBALS['dbi']->escapeString($cfgRelation['user']) . '\''; $row = $GLOBALS['dbi']->fetchSingleRow($query, 'ASSOC', $GLOBALS['controllink']); @@ -104,7 +104,7 @@ function PMA_saveUserprefs(array $config_array) . PMA\libraries\Util::backquote($cfgRelation['userconfig']); $query = 'SELECT `username` FROM ' . $query_table . ' WHERE `username` = \'' - . PMA\libraries\Util::sqlAddSlashes($cfgRelation['user']) + . $GLOBALS['dbi']->escapeString($cfgRelation['user']) . '\''; $has_config = $GLOBALS['dbi']->fetchValue( @@ -114,17 +114,17 @@ function PMA_saveUserprefs(array $config_array) if ($has_config) { $query = 'UPDATE ' . $query_table . ' SET `timevalue` = NOW(), `config_data` = \'' - . PMA\libraries\Util::sqlAddSlashes($config_data) + . $GLOBALS['dbi']->escapeString($config_data) . '\'' . ' WHERE `username` = \'' - . PMA\libraries\Util::sqlAddSlashes($cfgRelation['user']) + . $GLOBALS['dbi']->escapeString($cfgRelation['user']) . '\''; } else { $query = 'INSERT INTO ' . $query_table . ' (`username`, `timevalue`,`config_data`) ' . 'VALUES (\'' - . PMA\libraries\Util::sqlAddSlashes($cfgRelation['user']) . '\', NOW(), ' - . '\'' . PMA\libraries\Util::sqlAddSlashes($config_data) . '\')'; + . $GLOBALS['dbi']->escapeString($cfgRelation['user']) . '\', NOW(), ' + . '\'' . $GLOBALS['dbi']->escapeString($config_data) . '\')'; } if (isset($_SESSION['cache'][$cache_key]['userprefs'])) { unset($_SESSION['cache'][$cache_key]['userprefs']); diff --git a/test/classes/plugin/import/ImportLdiTest.php b/test/classes/plugin/import/ImportLdiTest.php index e3ac23bf4b..5186ad18f9 100644 --- a/test/classes/plugin/import/ImportLdiTest.php +++ b/test/classes/plugin/import/ImportLdiTest.php @@ -83,6 +83,9 @@ class ImportLdiTest extends PMATestCase $dbi->expects($this->any())->method('fetchRow') ->will($this->returnValue($fetchRowResult)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->object = new ImportLdi(); diff --git a/test/libraries/PMA_server_privileges_test.php b/test/libraries/PMA_server_privileges_test.php index abf318bf01..3ac6d87cfe 100644 --- a/test/libraries/PMA_server_privileges_test.php +++ b/test/libraries/PMA_server_privileges_test.php @@ -134,10 +134,14 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $dbi->expects($this->any())->method('tryQuery') ->will($this->returnValue(true)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $GLOBALS['is_superuser'] = true; $GLOBALS['is_grantuser'] = true; $GLOBALS['is_createuser'] = true; + $GLOBALS['is_reload_priv'] = true; } /** @@ -507,8 +511,8 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $db, $table, $username, $hostname ); $sql = "SELECT * FROM `mysql`.`user`" - . " WHERE `User` = '" . PMA\libraries\Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . PMA\libraries\Util::sqlAddSlashes($hostname) . "';"; + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "';"; $this->assertEquals( $sql, $ret @@ -521,8 +525,8 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $db, $table, $username, $hostname ); $sql = "SELECT * FROM `mysql`.`db`" - . " WHERE `User` = '" . PMA\libraries\Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . PMA\libraries\Util::sqlAddSlashes($hostname) . "'" + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "'" . " AND '" . PMA\libraries\Util::unescapeMysqlWildcards($db) . "'" . " LIKE `Db`;"; $this->assertEquals( @@ -538,10 +542,10 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); $sql = "SELECT `Table_priv`" . " FROM `mysql`.`tables_priv`" - . " WHERE `User` = '" . PMA\libraries\Util::sqlAddSlashes($username) . "'" - . " AND `Host` = '" . PMA\libraries\Util::sqlAddSlashes($hostname) . "'" + . " WHERE `User` = '" . $GLOBALS['dbi']->escapeString($username) . "'" + . " AND `Host` = '" . $GLOBALS['dbi']->escapeString($hostname) . "'" . " AND `Db` = '" . PMA\libraries\Util::unescapeMysqlWildcards($db) . "'" - . " AND `Table_name` = '" . PMA\libraries\Util::sqlAddSlashes($table) . "';"; + . " AND `Table_name` = '" . $GLOBALS['dbi']->escapeString($table) . "';"; $this->assertEquals( $sql, $ret @@ -556,7 +560,7 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $this->assertEquals( "SELECT `Table_priv` FROM `mysql`.`tables_priv` " . "WHERE `User` = 'pma_username' AND " - . "`Host` = 'pma_hostname' AND `Db` = 'db\' AND' AND " + . "`Host` = 'pma_hostname' AND `Db` = 'db' AND' AND " . "`Table_name` = 'pma_table';", $ret ); diff --git a/user_password.php b/user_password.php index 5c0f6299bd..d2063e554e 100644 --- a/user_password.php +++ b/user_password.php @@ -236,7 +236,7 @@ function PMA_changePassUrlParamsAndSubmitQuery( . ' IDENTIFIED with ' . $orig_auth_plugin . ' BY ' . (($password == '') ? '\'\'' - : '\'' . PMA\libraries\Util::sqlAddSlashes($password) . '\''); + : '\'' . $GLOBALS['dbi']->escapeString($password) . '\''); } else if ($serverType == 'MariaDB' && PMA_MYSQL_INT_VERSION >= 50200 && PMA_MYSQL_INT_VERSION < 100100 @@ -264,7 +264,7 @@ function PMA_changePassUrlParamsAndSubmitQuery( $local_query = 'SET password = ' . (($password == '') ? '\'\'' : $hashing_function . '(\'' - . PMA\libraries\Util::sqlAddSlashes($password) . '\')'); + . $GLOBALS['dbi']->escapeString($password) . '\')'); } if (! @$GLOBALS['dbi']->tryQuery($local_query)) { PMA\libraries\Util::mysqlDie( From d5c9a193f48026b21cd5ff77c130300b3fbc568e Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sat, 29 Oct 2016 11:00:52 +0530 Subject: [PATCH 02/32] Fix tests for Table, ThemeManager, Tracker classes Signed-off-by: Deven Bansod --- phpunit.xml.dist | 4 ++-- test/classes/TableTest.php | 3 +++ test/classes/ThemeManagerTest.php | 8 ++++++++ test/classes/TrackerTest.php | 25 +++++++++++++++++++++++++ 4 files changed, 38 insertions(+), 2 deletions(-) diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 2e2d1d226f..ef300c6b50 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -27,9 +27,9 @@ test/libraries/rte test/libraries - + diff --git a/test/classes/TableTest.php b/test/classes/TableTest.php index 08b9a40d3a..4e47bbeaf1 100644 --- a/test/classes/TableTest.php +++ b/test/classes/TableTest.php @@ -283,6 +283,9 @@ class TableTest extends PMATestCase $dbi->expects($this->any())->method('fetchRow') ->will($this->returnValue(false)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; } diff --git a/test/classes/ThemeManagerTest.php b/test/classes/ThemeManagerTest.php index 8bfd14505f..d966c33e1d 100644 --- a/test/classes/ThemeManagerTest.php +++ b/test/classes/ThemeManagerTest.php @@ -35,6 +35,14 @@ class ThemeManagerTest extends PMATestCase $GLOBALS['server'] = 99; $GLOBALS['PMA_Config'] = new PMA\libraries\Config(); $GLOBALS['collation_connection'] = 'utf8_general_ci'; + + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + + $cfg['dbi'] = $dbi; } /** diff --git a/test/classes/TrackerTest.php b/test/classes/TrackerTest.php index e4c25c6c74..59fd6149e1 100644 --- a/test/classes/TrackerTest.php +++ b/test/classes/TrackerTest.php @@ -47,6 +47,14 @@ class TrackerTest extends PMATestCase 'db' => 'pmadb', 'tracking' => 'tracking' ); + + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + + $cfg['dbi'] = $dbi; } /** * Test for Tracker::enable @@ -318,6 +326,9 @@ class TrackerTest extends PMATestCase $dbi->expects($this->any())->method('query') ->will($this->returnValueMap($queryResults)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->assertEquals( 'executed', @@ -348,6 +359,8 @@ class TrackerTest extends PMATestCase ->method('query') ->with($sql_query) ->will($this->returnValue('executed')); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $this->assertEquals( @@ -400,6 +413,9 @@ class TrackerTest extends PMATestCase ->with($expectedMainQuery, null, 0, false) ->will($this->returnValue("executed")); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->assertEquals( 'executed', @@ -444,6 +460,9 @@ class TrackerTest extends PMATestCase ->with($sql_query, null, 0, false) ->will($this->returnValue("executed")); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; if ($type == null) { @@ -526,6 +545,9 @@ class TrackerTest extends PMATestCase ->with($sql_query_2, null, 0, false) ->will($this->returnValue("executed_2")); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->assertEquals( @@ -609,6 +631,9 @@ class TrackerTest extends PMATestCase ->with("executed_1") ->will($this->returnValue($fetchArrayReturn)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $result = Tracker::getTrackedData("pma'db", "pma'table", "1.0"); From bd449f740512ce10de9ac00a9970d6ee80d85ab4 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sat, 29 Oct 2016 11:17:57 +0530 Subject: [PATCH 03/32] Fix tests in Navigation, TableSearchController Signed-off-by: Deven Bansod --- test/classes/controllers/TableSearchControllerTest.php | 2 ++ test/classes/navigation/NavigationTest.php | 9 +++++++++ 2 files changed, 11 insertions(+) diff --git a/test/classes/controllers/TableSearchControllerTest.php b/test/classes/controllers/TableSearchControllerTest.php index 355d98c109..390b93e488 100644 --- a/test/classes/controllers/TableSearchControllerTest.php +++ b/test/classes/controllers/TableSearchControllerTest.php @@ -85,6 +85,8 @@ class TableSearchControllerTest extends PMATestCase $dbi->expects($this->any())->method('fetchValue') ->will($this->returnValue($show_create_table)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; diff --git a/test/classes/navigation/NavigationTest.php b/test/classes/navigation/NavigationTest.php index aef668e822..72a11090e9 100644 --- a/test/classes/navigation/NavigationTest.php +++ b/test/classes/navigation/NavigationTest.php @@ -72,6 +72,9 @@ class NavigationTest extends PMATestCase $dbi->expects($this->once()) ->method('tryQuery') ->with($expectedQuery); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->object->hideNavigationItem('itemName', 'itemType', 'db'); } @@ -93,6 +96,9 @@ class NavigationTest extends PMATestCase $dbi->expects($this->once()) ->method('tryQuery') ->with($expectedQuery); + + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $this->object->unhideNavigationItem('itemName', 'itemType', 'db'); } @@ -111,6 +117,8 @@ class NavigationTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('tryQuery') ->with($expectedQuery) @@ -140,6 +148,7 @@ class NavigationTest extends PMATestCase ->will($this->returnValue(false)); $dbi->expects($this->once()) ->method('freeResult'); + $GLOBALS['dbi'] = $dbi; $html = $this->object->getItemUnhideDialog('db'); From 956f3179cbb6a75b1bc5e5768684e377275e5ece Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 11:55:46 +0530 Subject: [PATCH 04/32] Fix Navigation tests and Export tests Signed-off-by: Deven Bansod --- libraries/DatabaseInterface.php | 5 +- libraries/DbSearch.php | 3 +- libraries/db_table_exists.lib.php | 2 +- phpunit.xml.dist | 2 +- test/classes/DbSearchTest.php | 29 +++-- test/classes/navigation/NavigationTest.php | 10 +- .../plugin/export/ExportHtmlwordTest.php | 60 ++++------ test/classes/plugin/export/ExportOdtTest.php | 54 ++++----- test/classes/plugin/export/ExportSqlTest.php | 111 ++++++++---------- .../plugin/export/ExportTexytextTest.php | 38 +++--- 10 files changed, 139 insertions(+), 175 deletions(-) diff --git a/libraries/DatabaseInterface.php b/libraries/DatabaseInterface.php index 94e2257790..8425ebfda3 100644 --- a/libraries/DatabaseInterface.php +++ b/libraries/DatabaseInterface.php @@ -489,10 +489,9 @@ class DatabaseInterface $needAnd = false; if ($table || (true === $tbl_is_group)) { $sql .= " `Name` LIKE '" - . - // Util::escapeMysqlWildcards( + . Util::escapeMysqlWildcards( $this->escapeString($table, $link) - // ) + ) . "%'"; $needAnd = true; } diff --git a/libraries/DbSearch.php b/libraries/DbSearch.php index ce31557f92..9299bf2800 100644 --- a/libraries/DbSearch.php +++ b/libraries/DbSearch.php @@ -204,8 +204,7 @@ class DbSearch // Usage example: If user is searching for a literal $ in a regexp search, // he should enter \$ as the value. $criteriaSearchStringEscaped = $GLOBALS['dbi']->escapeString( - $this->_criteriaSearchString, - ($this->_criteriaSearchType == 4 ? false : true) + $this->_criteriaSearchString ); // Extract search words or pattern $search_words = (($this->_criteriaSearchType > 2) diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php index 48af281128..8407a2b712 100644 --- a/libraries/db_table_exists.lib.php +++ b/libraries/db_table_exists.lib.php @@ -62,7 +62,7 @@ if (empty($is_table) if (! $is_table) { $_result = $GLOBALS['dbi']->tryQuery( 'SHOW TABLES LIKE \'' - . $GLOBALS['dbi']->escapeString($table, true) . '\';', + . $GLOBALS['dbi']->escapeString($table) . '\';', null, PMA\libraries\DatabaseInterface::QUERY_STORE ); $is_table = @$GLOBALS['dbi']->numRows($_result); diff --git a/phpunit.xml.dist b/phpunit.xml.dist index ef300c6b50..902ea01424 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -27,7 +27,7 @@ test/libraries/rte test/libraries - diff --git a/test/classes/DbSearchTest.php b/test/classes/DbSearchTest.php index bc745ed2fc..31ca9b2404 100644 --- a/test/classes/DbSearchTest.php +++ b/test/classes/DbSearchTest.php @@ -10,6 +10,7 @@ */ require_once 'libraries/url_generating.lib.php'; +require_once 'libraries/js_escape.lib.php'; require_once 'libraries/database_interface.inc.php'; require_once 'test/PMATestCase.php'; @@ -40,6 +41,22 @@ class DbSearchTest extends PMATestCase $this->object = new DbSearch('pma_test'); $GLOBALS['server'] = 0; $GLOBALS['db'] = 'pma'; + + //mock DBI + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + + $dbi->expects($this->any()) + ->method('getColumns') + ->with('pma', 'table1') + ->will($this->returnValue(array())); + + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + + $GLOBALS['dbi'] = $dbi; } /** @@ -77,18 +94,6 @@ class DbSearchTest extends PMATestCase */ public function testGetSearchSqls() { - //mock DBI - $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') - ->disableOriginalConstructor() - ->getMock(); - - $dbi->expects($this->any()) - ->method('getColumns') - ->with('pma', 'table1') - ->will($this->returnValue(array())); - - $GLOBALS['dbi'] = $dbi; - $this->assertEquals( array ( 'select_columns' => 'SELECT * FROM `pma`.`table1` WHERE FALSE', diff --git a/test/classes/navigation/NavigationTest.php b/test/classes/navigation/NavigationTest.php index 72a11090e9..c6c0d6a67c 100644 --- a/test/classes/navigation/NavigationTest.php +++ b/test/classes/navigation/NavigationTest.php @@ -117,13 +117,11 @@ class NavigationTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->any())->method('escapeString') - ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('tryQuery') ->with($expectedQuery) ->will($this->returnValue(true)); - $dbi->expects($this->at(1)) + $dbi->expects($this->at(3)) ->method('fetchArray') ->will( $this->returnValue( @@ -133,7 +131,7 @@ class NavigationTest extends PMATestCase ) ) ); - $dbi->expects($this->at(2)) + $dbi->expects($this->at(4)) ->method('fetchArray') ->will( $this->returnValue( @@ -143,11 +141,13 @@ class NavigationTest extends PMATestCase ) ) ); - $dbi->expects($this->at(3)) + $dbi->expects($this->at(5)) ->method('fetchArray') ->will($this->returnValue(false)); $dbi->expects($this->once()) ->method('freeResult'); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; diff --git a/test/classes/plugin/export/ExportHtmlwordTest.php b/test/classes/plugin/export/ExportHtmlwordTest.php index 5e8e1336ed..06aef14afc 100644 --- a/test/classes/plugin/export/ExportHtmlwordTest.php +++ b/test/classes/plugin/export/ExportHtmlwordTest.php @@ -479,20 +479,15 @@ class ExportHtmlwordTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will($this->returnValue(array())); - - $dbi->expects($this->at(6)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fieldname' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) + ->willReturnOnConsecutiveCalls( + array(), + array( + 'fieldname' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); @@ -527,6 +522,8 @@ class ExportHtmlwordTest extends PMATestCase ) ) ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -573,29 +570,20 @@ class ExportHtmlwordTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fieldname' => array( - 'foreign_table' => 'ftable', - 'foreign_field' => 'ffield' - ) + ->willReturnOnConsecutiveCalls( + array( + 'fieldname' => array( + 'foreign_table' => 'ftable', + 'foreign_field' => 'ffield' ) - ) - ); - - $dbi->expects($this->at(6)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'field' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) + ), + array( + 'field' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); @@ -631,6 +619,8 @@ class ExportHtmlwordTest extends PMATestCase ) ) ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -700,6 +690,8 @@ class ExportHtmlwordTest extends PMATestCase ) ) ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; diff --git a/test/classes/plugin/export/ExportOdtTest.php b/test/classes/plugin/export/ExportOdtTest.php index 6a9994bb86..8a9a7f2c08 100644 --- a/test/classes/plugin/export/ExportOdtTest.php +++ b/test/classes/plugin/export/ExportOdtTest.php @@ -688,20 +688,15 @@ class ExportOdtTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will($this->returnValue(array())); - - $dbi->expects($this->at(6)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fieldname' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) + ->willReturnOnConsecutiveCalls( + array(), + array( + 'fieldname' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); @@ -794,29 +789,20 @@ class ExportOdtTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fieldname' => array( - 'foreign_table' => 'ftable', - 'foreign_field' => 'ffield' - ) + ->willReturnOnConsecutiveCalls( + array( + 'fieldname' => array( + 'foreign_table' => 'ftable', + 'foreign_field' => 'ffield' ) - ) - ); - - $dbi->expects($this->at(6)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'field' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) + ), + array( + 'field' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); diff --git a/test/classes/plugin/export/ExportSqlTest.php b/test/classes/plugin/export/ExportSqlTest.php index 8228bb9916..8ba44774c9 100644 --- a/test/classes/plugin/export/ExportSqlTest.php +++ b/test/classes/plugin/export/ExportSqlTest.php @@ -92,6 +92,9 @@ class ExportSqlTest extends PMATestCase ->method('getCompatibilities') ->will($this->returnValue(array('v1', 'v2'))); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $GLOBALS['plugin_param']['export_type'] = 'server'; $GLOBALS['plugin_param']['single_table'] = false; @@ -857,8 +860,10 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); - $dbi->expects($this->at(0)) + $dbi->expects($this->any(0)) ->method('getColumns') ->with('db', 'view') ->will( @@ -876,22 +881,6 @@ class ExportSqlTest extends PMATestCase ) ); - $dbi->expects($this->at(1)) - ->method('getColumns') - ->with('db', 'view') - ->will( - $this->returnValue( - array( - 'cname' => array( - 'Type' => 'char', - 'Collation' => 'utf-8', - 'Null' => 'YES', - 'Comment' => 'cmt', - 'Field' => 'fname' - ) - ) - ) - ); $GLOBALS['dbi'] = $dbi; $GLOBALS['sql_compatibility'] = 'MSSQL'; @@ -910,6 +899,31 @@ class ExportSqlTest extends PMATestCase // case 2 unset($GLOBALS['sql_compatibility']); + + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + + $dbi->expects($this->any()) + ->method('getColumns') + ->with('db', 'view') + ->will( + $this->returnValue( + array( + 'cname' => array( + 'Type' => 'char', + 'Collation' => 'utf-8', + 'Null' => 'YES', + 'Comment' => 'cmt', + 'Field' => 'fname' + ) + ) + ) + ); + $GLOBALS['dbi'] = $dbi; + $result = $method->invoke( $this->object, 'db', 'view', "\n", false ); @@ -950,12 +964,8 @@ class ExportSqlTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->any()) ->method('query') - ->with( - 'SHOW TABLE STATUS FROM `db` WHERE Name = \'table\'', null, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) ->will($this->returnValue('res')); $dbi->expects($this->never()) @@ -982,11 +992,6 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue($tmpres)); - $dbi->expects($this->at(5)) - ->method('query') - ->with('SET SQL_QUOTE_SHOW_CREATE = 1') - ->will($this->returnValue('res')); - $dbi->expects($this->once()) ->method('tryQuery') ->with('SHOW CREATE TABLE `db`.`table`') @@ -1019,7 +1024,7 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->once()) ->method('getTable') - ->will($this->returnValue(new Table('table', 'db'))); + ->will($this->returnValue(new Table('table', 'db', $dbi))); $GLOBALS['dbi'] = $dbi; $GLOBALS['cfg']['Server']['DisableIS'] = false; @@ -1121,12 +1126,8 @@ class ExportSqlTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->any()) ->method('query') - ->with( - 'SHOW TABLE STATUS FROM `db` WHERE Name = \'table\'', null, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) ->will($this->returnValue('res')); $dbi->expects($this->never()) @@ -1153,11 +1154,6 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue($tmpres)); - $dbi->expects($this->at(5)) - ->method('query') - ->with('SET SQL_QUOTE_SHOW_CREATE = 0') - ->will($this->returnValue('res')); - $dbi->expects($this->once()) ->method('tryQuery') ->with('SHOW CREATE TABLE `db`.`table`') @@ -1169,7 +1165,10 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->once()) ->method('getTable') - ->will($this->returnValue(new Table('table', 'db'))); + ->will($this->returnValue(new Table('table', 'db', $dbi))); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $GLOBALS['cfg']['Server']['DisableIS'] = false; @@ -1207,32 +1206,24 @@ class ExportSqlTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'foo' => array( - 'foreign_table' => 'ftable', - 'foreign_field' => 'ffield' - ) + ->willReturnOnConsecutiveCalls( + array( + 'foo' => array( + 'foreign_table' => 'ftable', + 'foreign_field' => 'ffield' + ) + ), + array( + 'fieldname' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); - $dbi->expects($this->at(1)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fieldname' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) - ) - ) - ); $GLOBALS['dbi'] = $dbi; $method = new ReflectionMethod('PMA\libraries\plugins\export\ExportSql', '_getTableComments'); diff --git a/test/classes/plugin/export/ExportTexytextTest.php b/test/classes/plugin/export/ExportTexytextTest.php index ace70296f8..56399e0722 100644 --- a/test/classes/plugin/export/ExportTexytextTest.php +++ b/test/classes/plugin/export/ExportTexytextTest.php @@ -364,6 +364,7 @@ class ExportTexytextTest extends PMATestCase $this->object = $this->getMockBuilder('PMA\libraries\plugins\export\ExportTexytext') ->setMethods(array('formatOneColumnDefinition')) ->getMock(); + $GLOBALS['controllink'] = null; // case 1 @@ -387,20 +388,25 @@ class ExportTexytextTest extends PMATestCase ->with('db', 'table') ->will($this->returnValue($keys)); - $dbi->expects($this->at(2)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fname' => array( - 'foreign_table' => ' 'ffield>' - ) + ->willReturnOnConsecutiveCalls( + array( + 'fname' => array( + 'foreign_table' => ' 'ffield>' + ) + ), + array( + 'fname' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); - $dbi->expects($this->at(3)) + $dbi->expects($this->once()) ->method('fetchValue') ->will( $this->returnValue( @@ -408,20 +414,6 @@ class ExportTexytextTest extends PMATestCase ) ); - $dbi->expects($this->at(5)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'fname' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) - ) - ) - ); - $columns = array( 'Field' => 'fname', 'Comment' => 'comm' From 00bfc9d45de0f73e0db16056edad0e9e3b1c95ef Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 11:56:40 +0530 Subject: [PATCH 05/32] Fixed regressive change in phpunit config file Signed-off-by: Deven Bansod --- phpunit.xml.dist | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 902ea01424..2e2d1d226f 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -29,7 +29,7 @@ test/selenium - --> + From 6a79e7c0c05dea6a0f0f90daba5dcc5be116c22d Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 14:21:02 +0530 Subject: [PATCH 06/32] Fixed some tests in Export, Import and Node Signed-off-by: Deven Bansod --- test/classes/navigation/NodeTest.php | 43 +++---- test/classes/plugin/export/ExportXmlTest.php | 111 +++++-------------- test/classes/plugin/import/ImportOdsTest.php | 2 + 3 files changed, 55 insertions(+), 101 deletions(-) diff --git a/test/classes/navigation/NodeTest.php b/test/classes/navigation/NodeTest.php index 7200bf3500..32a25b6d95 100644 --- a/test/classes/navigation/NodeTest.php +++ b/test/classes/navigation/NodeTest.php @@ -373,6 +373,8 @@ class NodeTest extends PMATestCase $dbi->expects($this->once()) ->method('fetchResult') ->with($expectedSql); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $node->getData('', $pos); } @@ -408,6 +410,9 @@ class NodeTest extends PMATestCase $dbi->expects($this->once()) ->method('fetchResult') ->with($expectedSql); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $node->getData('', $pos); } @@ -438,27 +443,18 @@ class NodeTest extends PMATestCase ->method('tryQuery') ->with("SHOW DATABASES WHERE TRUE AND `Database` LIKE '%db%' ") ->will($this->returnValue(true)); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(3)) ->method('fetchArray') - ->will( - $this->returnValue( - array( - '0' => 'db' - ) - ) + ->willReturnOnConsecutiveCalls( + array( + '0' => 'db' + ), + array( + '0' => 'aa_db' + ), + false ); - $dbi->expects($this->at(2)) - ->method('fetchArray') - ->will( - $this->returnValue( - array( - '0' => 'aa_db' - ) - ) - ); - $dbi->expects($this->at(3)) - ->method('fetchArray') - ->will($this->returnValue(false)); + $dbi->expects($this->once()) ->method('fetchResult') ->with( @@ -466,6 +462,9 @@ class NodeTest extends PMATestCase . " LOCATE('db_', CONCAT(`Database`, '_')) = 1" . " OR LOCATE('aa_', CONCAT(`Database`, '_')) = 1 )" ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $node->getData('', $pos, 'db'); } @@ -553,6 +552,9 @@ class NodeTest extends PMATestCase $dbi->expects($this->once()) ->method('tryQuery') ->with("SHOW DATABASES WHERE TRUE "); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $node->getPresence(); @@ -563,6 +565,9 @@ class NodeTest extends PMATestCase $dbi->expects($this->once()) ->method('tryQuery') ->with("SHOW DATABASES WHERE TRUE AND `Database` LIKE '%dbname%' "); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $node->getPresence('', 'dbname'); } diff --git a/test/classes/plugin/export/ExportXmlTest.php b/test/classes/plugin/export/ExportXmlTest.php index 455f0cbd62..850aec3e6a 100644 --- a/test/classes/plugin/export/ExportXmlTest.php +++ b/test/classes/plugin/export/ExportXmlTest.php @@ -234,29 +234,15 @@ class ExportXmlTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->exactly(3)) ->method('fetchResult') - ->with( - 'SELECT `DEFAULT_CHARACTER_SET_NAME`, `DEFAULT_COLLATION_NAME`' - . ' FROM `information_schema`.`SCHEMATA` WHERE `SCHEMA_NAME`' - . ' = \'d<"b\' LIMIT 1' - ) - ->will($this->returnValue($result)); + ->willReturnOnConsecutiveCalls( + $result, + $result, + false + ); - $dbi->expects($this->at(1)) - ->method('fetchResult') - ->with( - 'SHOW CREATE TABLE `d<"b`.`table`', - 0 - ) - ->will($this->returnValue($result)); - - // isView - $dbi->expects($this->at(2)) - ->method('fetchResult') - ->will($this->returnValue(false)); - - $dbi->expects($this->at(3)) + $dbi->expects($this->once()) ->method('getTriggers') ->with('d<"b', 'table') ->will( @@ -270,49 +256,31 @@ class ExportXmlTest extends PMATestCase ) ); - $dbi->expects($this->at(4)) + $dbi->expects($this->exactly(2)) ->method('getProceduresOrFunctions') ->with('d<"b', 'FUNCTION') - ->will( - $this->returnValue( - array( - 'fn' - ) + ->willReturnOnConsecutiveCalls( + array( + 'fn' + ), + array( + 'pr' ) ); - $dbi->expects($this->at(5)) + $dbi->expects($this->exactly(2)) ->method('getDefinition') ->with('d<"b', 'FUNCTION', 'fn') - ->will( - $this->returnValue( - 'fndef' - ) - ); - - $dbi->expects($this->at(6)) - ->method('getProceduresOrFunctions') - ->with('d<"b', 'PROCEDURE') - ->will( - $this->returnValue( - array( - 'pr' - ) - ) - ); - - $dbi->expects($this->at(7)) - ->method('getDefinition') - ->with('d<"b', 'PROCEDURE', 'pr') - ->will( - $this->returnValue( - 'prdef' - ) + ->willReturnOnConsecutiveCalls( + 'fndef', + 'prdef' ); $dbi->expects($this->once()) ->method('getTable') - ->will($this->returnValue(new Table('table', 'd<"b'))); + ->will($this->returnValue(new Table('table', 'd<"b', $dbi))); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -385,39 +353,18 @@ class ExportXmlTest extends PMATestCase 't1' => array(null, '"tbl"') ); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(4)) ->method('fetchResult') - ->with( - 'SHOW CREATE TABLE `d<"b`.`t1`', - 0 - ) - ->will($this->returnValue($result)); - - // isView - $dbi->expects($this->at(2)) - ->method('fetchResult') - ->will($this->returnValue(true)); - - $result = array( - 't2' => array(null, '"tbl"') - ); - - $dbi->expects($this->at(3)) - ->method('fetchResult') - ->with( - 'SHOW CREATE TABLE `d<"b`.`t2`', - 0 - ) - ->will($this->returnValue($result)); - - // isView - $dbi->expects($this->at(4)) - ->method('fetchResult') - ->will($this->returnValue(false)); + ->willReturnOnConsecutiveCalls( + $result, + true, + $result, + false + ); $dbi->expects($this->any()) ->method('getTable') - ->will($this->returnValue(new Table('table', 'd<"b'))); + ->will($this->returnValue(new Table('table', 'd<"b', $dbi))); $GLOBALS['dbi'] = $dbi; diff --git a/test/classes/plugin/import/ImportOdsTest.php b/test/classes/plugin/import/ImportOdsTest.php index 14e28aa169..b890101e1d 100644 --- a/test/classes/plugin/import/ImportOdsTest.php +++ b/test/classes/plugin/import/ImportOdsTest.php @@ -126,6 +126,8 @@ class ImportOdsTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; //Test function called From 46d3f940d7960d40d018179d659453d0630002e7 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 14:33:01 +0530 Subject: [PATCH 07/32] Fixed test errors in PMD_Common tests Signed-off-by: Deven Bansod --- test/libraries/PMA_PMD_common_test.php | 77 +++++++++++--------------- 1 file changed, 32 insertions(+), 45 deletions(-) diff --git a/test/libraries/PMA_PMD_common_test.php b/test/libraries/PMA_PMD_common_test.php index 3b0d069af1..da99ac7f37 100644 --- a/test/libraries/PMA_PMD_common_test.php +++ b/test/libraries/PMA_PMD_common_test.php @@ -54,8 +54,10 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('fetchResult') ->with( " @@ -89,8 +91,10 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('fetchResult') ->with( "SELECT `page_descr` FROM `pmadb`.`pdf_pages`" @@ -121,26 +125,15 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->exactly(2)) ->method('query') - ->with( - "DELETE FROM `pmadb`.`table_coords`" - . " WHERE `pdf_page_number` = " . $pg, - 2, - PMA\libraries\DatabaseInterface::QUERY_STORE, - false - ) - ->will($this->returnValue(true)); + ->willReturnOnConsecutiveCalls( + true, + true + ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); - $dbi->expects($this->at(1)) - ->method('query') - ->with( - "DELETE FROM `pmadb`.`pdf_pages` WHERE `page_nr` = " . $pg, - 2, - PMA\libraries\DatabaseInterface::QUERY_STORE, - false - ) - ->will($this->returnValue(true)); $GLOBALS['dbi'] = $dbi; $result = PMA_deletePage($pg); @@ -162,7 +155,7 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('fetchResult') ->with( "SELECT `page_nr` FROM `pmadb`.`pdf_pages`" @@ -174,6 +167,9 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase PMA\libraries\DatabaseInterface::QUERY_STORE ) ->will($this->returnValue(array($default_pg))); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $result = PMA_getDefaultPage($db); @@ -193,7 +189,7 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('fetchResult') ->with( "SELECT `page_nr` FROM `pmadb`.`pdf_pages`" @@ -205,6 +201,9 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase PMA\libraries\DatabaseInterface::QUERY_STORE ) ->will($this->returnValue(array())); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $result = PMA_getDefaultPage($db); @@ -225,7 +224,7 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('fetchResult') ->with( "SELECT `page_nr` FROM `pmadb`.`pdf_pages`" @@ -237,6 +236,9 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase PMA\libraries\DatabaseInterface::QUERY_STORE ) ->will($this->returnValue(array($default_pg))); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $result = PMA_getLoadingPage($db); @@ -257,30 +259,15 @@ class PMA_PMD_CommonTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->with( - "SELECT `page_nr` FROM `pmadb`.`pdf_pages`" - . " WHERE `db_name` = '" . $db . "'" - . " AND `page_descr` = '" . $db . "'", - null, - null, - 2, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) - ->will($this->returnValue(array())); + ->willReturnOnConsecutiveCalls( + array(), + array($first_pg) + ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); - $dbi->expects($this->at(1)) - ->method('fetchResult') - ->with( - "SELECT MIN(`page_nr`) FROM `pmadb`.`pdf_pages`" - . " WHERE `db_name` = '" . $db . "'", - null, - null, - 2, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) - ->will($this->returnValue(array($first_pg))); $GLOBALS['dbi'] = $dbi; $result = PMA_getLoadingPage($db); From fe71fbda566eb5e22c82032214061f129c8b66bf Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 15:12:28 +0530 Subject: [PATCH 08/32] Fixed tests in Central Columns Signed-off-by: Deven Bansod --- test/libraries/PMA_central_columns_test.php | 43 +++++++-------------- 1 file changed, 14 insertions(+), 29 deletions(-) diff --git a/test/libraries/PMA_central_columns_test.php b/test/libraries/PMA_central_columns_test.php index b983e7e763..a0e4b94d86 100644 --- a/test/libraries/PMA_central_columns_test.php +++ b/test/libraries/PMA_central_columns_test.php @@ -132,6 +132,8 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase ->will( $this->returnValue(array("PMA_table", "PMA_table1", "PMA_table2")) ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); } @@ -159,28 +161,11 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase */ public function testPMAGetColumnsList() { - $GLOBALS['dbi']->expects($this->at(1)) + $GLOBALS['dbi']->expects($this->exactly(2)) ->method('fetchResult') - ->with( - "SELECT * FROM `pma_central_columns` " - . "WHERE db_name = 'phpmyadmin' LIMIT 0, 25;", - null, null, $GLOBALS['controllink'] - ) - ->will( - $this->returnValue($this->_columnData) - ); - - $GLOBALS['dbi']->expects($this->at(3)) - ->method('fetchResult') - ->with( - "SELECT * FROM `pma_central_columns` " - . "WHERE db_name = 'phpmyadmin' LIMIT 1, 2;", - null, null, $GLOBALS['controllink'] - ) - ->will( - $this->returnValue( - array_slice($this->_columnData, 1, 2) - ) + ->willReturnOnConsecutiveCalls( + $this->_columnData, + array_slice($this->_columnData, 1, 2) ); $this->assertEquals( @@ -200,7 +185,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase */ function testPMAGetCentralColumnsCount() { - $GLOBALS['dbi']->expects($this->at(1)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT count(db_name) FROM `pma_central_columns` " @@ -243,7 +228,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase $_REQUEST['table'] = 'PMA_table'; // when column exists in the central column list - $GLOBALS['dbi']->expects($this->at(2)) + $GLOBALS['dbi']->expects($this->at(4)) ->method('fetchResult') ->with( "SELECT col_name FROM `pma_central_columns` " @@ -254,7 +239,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase $this->returnValue(array('col1')) ); - $GLOBALS['dbi']->expects($this->at(4)) + $GLOBALS['dbi']->expects($this->at(7)) ->method('tryQuery') ->with( "DELETE FROM `pma_central_columns` " @@ -311,7 +296,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase $db = 'PMA_db'; $table = 'PMA_table'; - $GLOBALS['dbi']->expects($this->at(3)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT col_name FROM `pma_central_columns` " @@ -337,7 +322,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase $db = 'PMA_db'; $table = 'PMA_table'; - $GLOBALS['dbi']->expects($this->at(3)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT * FROM `pma_central_columns` " @@ -505,7 +490,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase */ public function testPMAGetCentralColumnsListRaw() { - $GLOBALS['dbi']->expects($this->at(1)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT * FROM `pma_central_columns` " @@ -528,7 +513,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase */ public function testPMAGetCentralColumnsListRawWithTable() { - $GLOBALS['dbi']->expects($this->at(3)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT * FROM `pma_central_columns` " @@ -592,7 +577,7 @@ class PMA_Central_Columns_Test extends PHPUnit_Framework_TestCase */ public function testPMAFindExistingColNames() { - $GLOBALS['dbi']->expects($this->at(1)) + $GLOBALS['dbi']->expects($this->once()) ->method('fetchResult') ->with( "SELECT * FROM `pma_central_columns` WHERE db_name = 'phpmyadmin'" From 675186ee003e5ed480db9b962149e94a52a28274 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 18:17:31 +0530 Subject: [PATCH 09/32] Fixed tests in Designer, Insert edit for, UserGroups, User preferences Signed-off-by: Deven Bansod --- test/classes/plugin/export/ExportXmlTest.php | 1 - test/libraries/PMA_designer_test.php | 25 +++++------- test/libraries/PMA_insert_edit_test.php | 40 ++++++++----------- .../libraries/PMA_server_user_groups_test.php | 36 +++++++++-------- test/libraries/PMA_user_preferences_test.php | 11 +++++ 5 files changed, 55 insertions(+), 58 deletions(-) diff --git a/test/classes/plugin/export/ExportXmlTest.php b/test/classes/plugin/export/ExportXmlTest.php index 850aec3e6a..80e307751a 100644 --- a/test/classes/plugin/export/ExportXmlTest.php +++ b/test/classes/plugin/export/ExportXmlTest.php @@ -270,7 +270,6 @@ class ExportXmlTest extends PMATestCase $dbi->expects($this->exactly(2)) ->method('getDefinition') - ->with('d<"b', 'FUNCTION', 'fn') ->willReturnOnConsecutiveCalls( 'fndef', 'prdef' diff --git a/test/libraries/PMA_designer_test.php b/test/libraries/PMA_designer_test.php index da4f544560..64fa3b897f 100644 --- a/test/libraries/PMA_designer_test.php +++ b/test/libraries/PMA_designer_test.php @@ -61,7 +61,7 @@ class PMA_DesignerTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('tryQuery') ->with( "SELECT `page_nr`, `page_descr` FROM `pmadb`.`pdf_pages`" @@ -72,24 +72,17 @@ class PMA_DesignerTest extends PHPUnit_Framework_TestCase ) ->will($this->returnValue('dummyRS')); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(3)) ->method('fetchAssoc') - ->with('dummyRS') - ->will( - $this->returnValue(array('page_nr' => '1', 'page_descr' => 'page1')) + ->willReturnOnConsecutiveCalls( + array('page_nr' => '1', 'page_descr' => 'page1'), + array('page_nr' => '2', 'page_descr' => 'page2'), + false ); - $dbi->expects($this->at(2)) - ->method('fetchAssoc') - ->with('dummyRS') - ->will( - $this->returnValue(array('page_nr' => '2', 'page_descr' => 'page2')) - ); - - $dbi->expects($this->at(3)) - ->method('fetchAssoc') - ->with('dummyRS') - ->will($this->returnValue(false)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; } diff --git a/test/libraries/PMA_insert_edit_test.php b/test/libraries/PMA_insert_edit_test.php index a61d1bf1d4..5a7e5e8c5f 100644 --- a/test/libraries/PMA_insert_edit_test.php +++ b/test/libraries/PMA_insert_edit_test.php @@ -137,33 +137,19 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->exactly(2)) ->method('query') - ->with( - 'SELECT * FROM `db`.`table` WHERE a=1;', - null, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) - ->will($this->returnValue('result1')); + ->willReturnOnConsecutiveCalls( + 'result1', + 'result2' + ); - $dbi->expects($this->at(3)) - ->method('query') - ->with( - 'SELECT * FROM `db`.`table` WHERE b="fo\o";', - null, - PMA\libraries\DatabaseInterface::QUERY_STORE - ) - ->will($this->returnValue('result2')); - - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchAssoc') - ->with('result1') - ->will($this->returnValue(array('assoc1'))); - - $dbi->expects($this->at(4)) - ->method('fetchAssoc') - ->with('result2') - ->will($this->returnValue(array('assoc2'))); + ->willReturnOnConsecutiveCalls( + array('assoc1'), + array('assoc2') + ); $GLOBALS['dbi'] = $dbi; $result = PMA_analyzeWhereClauses($clauses, 'table', 'db'); @@ -2473,6 +2459,12 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase ->method('fetchSingleRow') ->with('SELECT * FROM `table` WHERE 1;') ->will($this->returnValue($prow)); + $dbi->expects($this->exactly(2)) + ->method('escapeString') + ->willReturnOnConsecutiveCalls( + $this->returnArgument(0), + "20\'12" + ); $GLOBALS['dbi'] = $dbi; diff --git a/test/libraries/PMA_server_user_groups_test.php b/test/libraries/PMA_server_user_groups_test.php index a75e3d38f8..d352f1c618 100644 --- a/test/libraries/PMA_server_user_groups_test.php +++ b/test/libraries/PMA_server_user_groups_test.php @@ -182,12 +182,16 @@ class PMA_ServerUserGroupsTest extends PHPUnit_Framework_TestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) - ->method('query') - ->with($userDelQuery); $dbi->expects($this->at(1)) + ->method('query') + ->with($userDelQuery); + $dbi->expects($this->at(3)) ->method('query') ->with($userGrpDelQuery); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; PMA_deleteUserGroup('ug'); @@ -220,24 +224,22 @@ class PMA_ServerUserGroupsTest extends PHPUnit_Framework_TestCase ->method('tryQuery') ->with($expectedQuery) ->will($this->returnValue(true)); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('fetchAssoc') - ->withAnyParameters() - ->will( - $this->returnValue( - array( - 'usergroup' => 'ug', - 'tab' => 'server_sql', - 'allowed' => 'Y' - ) - ) + ->willReturnOnConsecutiveCalls( + array( + 'usergroup' => 'ug', + 'tab' => 'server_sql', + 'allowed' => 'Y' + ), + false ); - $dbi->expects($this->at(2)) - ->method('fetchAssoc') - ->withAnyParameters() - ->will($this->returnValue(false)); $dbi->expects($this->once()) ->method('freeResult'); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; // editing a user group diff --git a/test/libraries/PMA_user_preferences_test.php b/test/libraries/PMA_user_preferences_test.php index 6f8598c287..bbb056e458 100644 --- a/test/libraries/PMA_user_preferences_test.php +++ b/test/libraries/PMA_user_preferences_test.php @@ -130,6 +130,10 @@ class PMA_User_Preferences_Test extends PHPUnit_Framework_TestCase ) ) ); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $result = PMA_loadUserprefs(); @@ -217,6 +221,10 @@ class PMA_User_Preferences_Test extends PHPUnit_Framework_TestCase ->with($query2, null) ->will($this->returnValue(true)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; $this->assertTrue( PMA_saveUserprefs(array(1)) @@ -248,6 +256,9 @@ class PMA_User_Preferences_Test extends PHPUnit_Framework_TestCase ->method('getError') ->with(null) ->will($this->returnValue("err1")); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; From 02dcfc81982f97e0e41d5326ea7028ab35154d97 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 19:16:01 +0530 Subject: [PATCH 10/32] Fix errors with TrackerTest Signed-off-by: Deven Bansod --- test/classes/TrackerTest.php | 19 ++++-- .../classes/plugin/export/ExportLatexTest.php | 58 +++++++------------ test/classes/plugin/export/ExportXmlTest.php | 1 - .../rte/PMA_EVN_getQueryFromRequest_test.php | 8 +++ 4 files changed, 44 insertions(+), 42 deletions(-) diff --git a/test/classes/TrackerTest.php b/test/classes/TrackerTest.php index 59fd6149e1..22012c9eeb 100644 --- a/test/classes/TrackerTest.php +++ b/test/classes/TrackerTest.php @@ -621,18 +621,27 @@ class TrackerTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(0)) + $dbi->expects($this->once()) ->method('query') - ->with($sql_query, null, 0, false) + // ->with($sql_query, null, 0, false) ->will($this->returnValue("executed_1")); - $dbi->expects($this->at(1)) + $dbi->expects($this->once()) ->method('fetchAssoc') ->with("executed_1") ->will($this->returnValue($fetchArrayReturn)); - $dbi->expects($this->any())->method('escapeString') - ->will($this->returnArgument(0)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will( + $this->returnValueMap( + array( + array("pma'db", "pma\'db"), + array("pma'table", "pma\'table"), + array("1.0", "1.0"), + ) + ) + ); $GLOBALS['dbi'] = $dbi; $result = Tracker::getTrackedData("pma'db", "pma'table", "1.0"); diff --git a/test/classes/plugin/export/ExportLatexTest.php b/test/classes/plugin/export/ExportLatexTest.php index b29db4e1c7..9eefe82560 100644 --- a/test/classes/plugin/export/ExportLatexTest.php +++ b/test/classes/plugin/export/ExportLatexTest.php @@ -693,20 +693,15 @@ class ExportLatexTest extends PMATestCase ->with('database', '') ->will($this->returnValue($keys)); - $dbi->expects($this->at(2)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will($this->returnValue(array())); - - $dbi->expects($this->at(7)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'name1' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'testmimetype_' - ) + ->willReturnOnConsecutiveCalls( + array(), + array( + 'name1' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'testmimetype_' ) ) ); @@ -811,30 +806,21 @@ class ExportLatexTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); - $dbi->expects($this->at(2)) + $dbi->expects($this->exactly(2)) ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'name1' => array( - 'foreign_table' => 'ftable', - 'foreign_field' => 'ffield' - ), - 'foreign_keys_data' => array() - ) - ) - ); - - $dbi->expects($this->at(7)) - ->method('fetchResult') - ->will( - $this->returnValue( - array( - 'field' => array( - 'values' => 'test-', - 'transformation' => 'testfoo', - 'mimetype' => 'test<' - ) + ->willReturnOnConsecutiveCalls( + array( + 'name1' => array( + 'foreign_table' => 'ftable', + 'foreign_field' => 'ffield' + ), + 'foreign_keys_data' => array() + ), + array( + 'field' => array( + 'values' => 'test-', + 'transformation' => 'testfoo', + 'mimetype' => 'test<' ) ) ); diff --git a/test/classes/plugin/export/ExportXmlTest.php b/test/classes/plugin/export/ExportXmlTest.php index 80e307751a..5518ab9d7c 100644 --- a/test/classes/plugin/export/ExportXmlTest.php +++ b/test/classes/plugin/export/ExportXmlTest.php @@ -258,7 +258,6 @@ class ExportXmlTest extends PMATestCase $dbi->expects($this->exactly(2)) ->method('getProceduresOrFunctions') - ->with('d<"b', 'FUNCTION') ->willReturnOnConsecutiveCalls( array( 'fn' diff --git a/test/libraries/rte/PMA_EVN_getQueryFromRequest_test.php b/test/libraries/rte/PMA_EVN_getQueryFromRequest_test.php index 83ed20571a..af1fe7626e 100644 --- a/test/libraries/rte/PMA_EVN_getQueryFromRequest_test.php +++ b/test/libraries/rte/PMA_EVN_getQueryFromRequest_test.php @@ -48,6 +48,14 @@ class PMA_EVN_GetQueryFromRequest_Test extends PHPUnit_Framework_TestCase unset($_REQUEST); $_REQUEST = $request; + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; + $this->assertEquals($query, PMA_EVN_getQueryFromRequest()); $this->assertEquals($num_err, count($errors)); } From 8b6e102cf77a53bb4fffd2a59a04afbc616aac16 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Fri, 4 Nov 2016 19:35:48 +0530 Subject: [PATCH 11/32] Fixed small error in XML test Signed-off-by: Deven Bansod --- phpunit.xml.dist | 4 +-- test/classes/plugin/export/ExportXmlTest.php | 33 +++++++++----------- 2 files changed, 17 insertions(+), 20 deletions(-) diff --git a/phpunit.xml.dist b/phpunit.xml.dist index 2e2d1d226f..ac0488f79a 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -27,9 +27,9 @@ test/libraries/rte test/libraries - + diff --git a/test/classes/plugin/export/ExportXmlTest.php b/test/classes/plugin/export/ExportXmlTest.php index 5518ab9d7c..1d1bc147a6 100644 --- a/test/classes/plugin/export/ExportXmlTest.php +++ b/test/classes/plugin/export/ExportXmlTest.php @@ -327,36 +327,33 @@ class ExportXmlTest extends PMATestCase unset($GLOBALS['xml_export_procedures']); $GLOBALS['output_charset_conversion'] = 0; - $result = array( + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + + $result_1 = array( array( 'DEFAULT_COLLATION_NAME' => 'utf8_general_ci', 'DEFAULT_CHARACTER_SET_NAME' => 'utf-8', ) ); - $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') - ->disableOriginalConstructor() - ->getMock(); - - $dbi->expects($this->at(0)) - ->method('fetchResult') - ->with( - 'SELECT `DEFAULT_CHARACTER_SET_NAME`, `DEFAULT_COLLATION_NAME`' - . ' FROM `information_schema`.`SCHEMATA` WHERE `SCHEMA_NAME`' - . ' = \'d<"b\' LIMIT 1' - ) - ->will($this->returnValue($result)); - - $result = array( + $result_2 = array( 't1' => array(null, '"tbl"') ); - $dbi->expects($this->exactly(4)) + $result_3 = array( + 't2' => array(null, '"tbl"') + ); + + + $dbi->expects($this->exactly(5)) ->method('fetchResult') ->willReturnOnConsecutiveCalls( - $result, + $result_1, + $result_2, true, - $result, + $result_3, false ); From 3f48d9cb5f2059d25b750332d9388d6be764dd9d Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sat, 5 Nov 2016 09:49:55 +0530 Subject: [PATCH 12/32] Fixed some more test errors Signed-off-by: Deven Bansod --- test/classes/TrackerTest.php | 25 ++++++----------- test/classes/plugin/export/ExportOdsTest.php | 28 ++++++++----------- test/libraries/PMA_server_privileges_test.php | 1 + 3 files changed, 22 insertions(+), 32 deletions(-) diff --git a/test/classes/TrackerTest.php b/test/classes/TrackerTest.php index 22012c9eeb..8bae0f61ef 100644 --- a/test/classes/TrackerTest.php +++ b/test/classes/TrackerTest.php @@ -535,15 +535,15 @@ class TrackerTest extends PMATestCase " AND `table_name` = 'pma_table' " . " AND `version` = '1.0' "; - $dbi->expects($this->at(0)) - ->method('query') - ->with($sql_query_1, null, 0, false) - ->will($this->returnValue("executed_1")); - - $dbi->expects($this->at(1)) - ->method('query') - ->with($sql_query_2, null, 0, false) - ->will($this->returnValue("executed_2")); + $dbi->method('query') + ->will( + $this->returnValueMap( + array( + array($sql_query_1, null, 0, false, "executed_1"), + array($sql_query_2, null, 0, false, "executed_2") + ) + ) + ); $dbi->expects($this->any())->method('escapeString') ->will($this->returnArgument(0)); @@ -609,12 +609,6 @@ class TrackerTest extends PMATestCase */ public function testGetTrackedData($fetchArrayReturn, $expectedArray) { - $sql_query = " SELECT * FROM `pmadb`.`tracking`" . - " WHERE `db_name` = 'pma\\'db' " . - " AND `table_name` = 'pma\\'table' " . - " AND `version` = '1.0' " . - " ORDER BY `version` DESC LIMIT 1"; - $GLOBALS['controllink'] = null; $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') @@ -623,7 +617,6 @@ class TrackerTest extends PMATestCase $dbi->expects($this->once()) ->method('query') - // ->with($sql_query, null, 0, false) ->will($this->returnValue("executed_1")); $dbi->expects($this->once()) diff --git a/test/classes/plugin/export/ExportOdsTest.php b/test/classes/plugin/export/ExportOdsTest.php index d611f1891d..3d34d42105 100644 --- a/test/classes/plugin/export/ExportOdsTest.php +++ b/test/classes/plugin/export/ExportOdsTest.php @@ -316,13 +316,12 @@ class ExportOdsTest extends PMATestCase ->with(true) ->will($this->returnValue($flags)); - $dbi->expects($this->at(4)) + $dbi->expects($this->exactly(2)) ->method('fieldFlags') - ->will($this->returnValue('BINARYTEST')); - - $dbi->expects($this->at(5)) - ->method('fieldFlags') - ->will($this->returnValue('binary')); + ->willReturnOnConsecutiveCalls( + 'BINARYTEST', + 'binary' + ); $dbi->expects($this->once()) ->method('query') @@ -334,23 +333,20 @@ class ExportOdsTest extends PMATestCase ->with(true) ->will($this->returnValue(8)); - $dbi->expects($this->at(11)) + $dbi->expects($this->exactly(2)) ->method('fetchRow') - ->with(true) ->will( - $this->returnValue( + $this->returnValueMap( array( - null, '01-01-2000', '01-01-2000', '01-01-2000 10:00:00', - "01-01-2014 10:02:00", "t>s", "a&b", "<" + array(true, array( + null, '01-01-2000', '01-01-2000', '01-01-2000 10:00:00', + "01-01-2014 10:02:00", "t>s", "a&b", "<" + )), + array(true, null) ) ) ); - $dbi->expects($this->at(12)) - ->method('fetchRow') - ->with(true) - ->will($this->returnValue(null)); - $GLOBALS['dbi'] = $dbi; $GLOBALS['mediawiki_caption'] = true; $GLOBALS['mediawiki_headers'] = true; diff --git a/test/libraries/PMA_server_privileges_test.php b/test/libraries/PMA_server_privileges_test.php index 3ac6d87cfe..055ec80b11 100644 --- a/test/libraries/PMA_server_privileges_test.php +++ b/test/libraries/PMA_server_privileges_test.php @@ -123,6 +123,7 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase 'password' => 'pma_password', 'Table_priv' => 'pri1, pri2', 'Type' => 'Type', + '@@old_passwords' => 0, ); $dbi->expects($this->any())->method('fetchSingleRow') ->will($this->returnValue($fetchSingleRow)); From 0d03c97ce6fb2a6187a6d5c4fdcce6590376eb3e Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Sun, 6 Nov 2016 23:09:33 +0530 Subject: [PATCH 13/32] Fix more test errors Signed-off-by: Deven Bansod --- test/classes/plugin/export/ExportOdsTest.php | 22 ++++---- test/classes/plugin/export/ExportSqlTest.php | 56 +++++++++++++++----- 2 files changed, 56 insertions(+), 22 deletions(-) diff --git a/test/classes/plugin/export/ExportOdsTest.php b/test/classes/plugin/export/ExportOdsTest.php index 3d34d42105..2876ec79f2 100644 --- a/test/classes/plugin/export/ExportOdsTest.php +++ b/test/classes/plugin/export/ExportOdsTest.php @@ -316,11 +316,17 @@ class ExportOdsTest extends PMATestCase ->with(true) ->will($this->returnValue($flags)); - $dbi->expects($this->exactly(2)) + $dbi->expects($this->exactly(8)) ->method('fieldFlags') ->willReturnOnConsecutiveCalls( 'BINARYTEST', - 'binary' + 'binary', + '', + '', + '', + '', + '', + '' ); $dbi->expects($this->once()) @@ -333,16 +339,14 @@ class ExportOdsTest extends PMATestCase ->with(true) ->will($this->returnValue(8)); - $dbi->expects($this->exactly(2)) + $dbi->expects($this->at(11)) ->method('fetchRow') + ->with(true) ->will( - $this->returnValueMap( + $this->returnValue( array( - array(true, array( - null, '01-01-2000', '01-01-2000', '01-01-2000 10:00:00', - "01-01-2014 10:02:00", "t>s", "a&b", "<" - )), - array(true, null) + null, '01-01-2000', '01-01-2000', '01-01-2000 10:00:00', + "01-01-2014 10:02:00", "t>s", "a&b", "<" ) ) ); diff --git a/test/classes/plugin/export/ExportSqlTest.php b/test/classes/plugin/export/ExportSqlTest.php index 8ba44774c9..5048abd427 100644 --- a/test/classes/plugin/export/ExportSqlTest.php +++ b/test/classes/plugin/export/ExportSqlTest.php @@ -580,6 +580,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('isSystemSchema') @@ -618,6 +620,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('fetchValue') @@ -721,15 +725,16 @@ class ExportSqlTest extends PMATestCase ) ->will($this->returnValue(array('f1', 'f2'))); - $dbi->expects($this->at(1)) + $dbi->expects($this->exactly(2)) ->method('getDefinition') - ->with('db', 'EVENT', 'f1') - ->will($this->returnValue('f1event')); - - $dbi->expects($this->at(2)) - ->method('getDefinition') - ->with('db', 'EVENT', 'f2') - ->will($this->returnValue('f2event')); + ->will( + $this->returnValueMap( + array('db', 'EVENT', 'f1', 'f1event'), + array('db', 'EVENT', 'f2', 'f2event') + ) + ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -790,6 +795,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -822,6 +829,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('getColumnsFull') @@ -1017,14 +1026,15 @@ class ExportSqlTest extends PMATestCase ") ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8\n" ); - $dbi->expects($this->once()) + $dbi->expects($this->at(11)) ->method('fetchRow') ->with('res') ->will($this->returnValue($row)); - $dbi->expects($this->once()) ->method('getTable') ->will($this->returnValue(new Table('table', 'db', $dbi))); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $GLOBALS['cfg']['Server']['DisableIS'] = false; @@ -1206,6 +1216,9 @@ class ExportSqlTest extends PMATestCase ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); + $dbi->expects($this->exactly(2)) ->method('fetchResult') ->willReturnOnConsecutiveCalls( @@ -1259,6 +1272,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('getTriggers') @@ -1371,6 +1386,8 @@ class ExportSqlTest extends PMATestCase $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') ->disableOriginalConstructor() ->getMock(); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $dbi->expects($this->once()) ->method('getColumns') @@ -1492,7 +1509,7 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue(5)); - $dbi->expects($this->at(11)) + $dbi->expects($this->once()) ->method('fetchRow') ->with('res') ->will( @@ -1500,6 +1517,8 @@ class ExportSqlTest extends PMATestCase array(null, 'test', '10', '6', "\x00\x0a\x0d\x1a") ) ); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $_table = $this->getMockBuilder('PMA\libraries\Table') ->disableOriginalConstructor() @@ -1622,7 +1641,7 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue(2)); - $dbi->expects($this->at(8)) + $dbi->expects($this->once()) ->method('fetchRow') ->with('res') ->will( @@ -1644,6 +1663,8 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->any()) ->method('getTable') ->will($this->returnValue($_table)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $GLOBALS['sql_compatibility'] = 'MSSQL'; @@ -1696,12 +1717,16 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->any()) ->method('getTable') ->will($this->returnValue($_table)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $GLOBALS['cfg']['Server']['DisableIS'] = false; $GLOBALS['sql_views_as_tables'] = false; $GLOBALS['sql_include_comments'] = true; $GLOBALS['crlf'] = "\n"; + $oldVal = $GLOBALS['sql_compatibility']; + $GLOBALS['sql_compatibility'] = 'NONE'; ob_start(); $this->assertTrue( @@ -1710,7 +1735,7 @@ class ExportSqlTest extends PMATestCase $result = ob_get_clean(); $this->assertContains( - "-- VIEW tbl\n", + "-- VIEW `tbl`\n", $result ); @@ -1718,6 +1743,9 @@ class ExportSqlTest extends PMATestCase "-- Data: None\n", $result ); + + // reset + $GLOBALS['sql_compatibility'] = $oldVal; } /** @@ -1748,6 +1776,8 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->any()) ->method('getTable') ->will($this->returnValue($_table)); + $dbi->expects($this->any())->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; $GLOBALS['cfg']['Server']['DisableIS'] = false; From 28a658fda035d87faf5600f94bc8346e51a5208e Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 7 Nov 2016 00:18:50 +0530 Subject: [PATCH 14/32] Fix more tests Signed-off-by: Deven Bansod --- test/classes/plugin/export/ExportSqlTest.php | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) diff --git a/test/classes/plugin/export/ExportSqlTest.php b/test/classes/plugin/export/ExportSqlTest.php index 5048abd427..4c1cb35ea9 100644 --- a/test/classes/plugin/export/ExportSqlTest.php +++ b/test/classes/plugin/export/ExportSqlTest.php @@ -1026,10 +1026,17 @@ class ExportSqlTest extends PMATestCase ") ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8\n" ); - $dbi->expects($this->at(11)) + $dbi->expects($this->exactly(2)) ->method('fetchRow') ->with('res') - ->will($this->returnValue($row)); + ->will( + $this->returnValueMap( + array( + array('res', $row), + array('res', null) + ) + ) + ); $dbi->expects($this->once()) ->method('getTable') ->will($this->returnValue(new Table('table', 'db', $dbi))); @@ -1509,12 +1516,15 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue(5)); - $dbi->expects($this->once()) + $dbi->expects($this->exactly(2)) ->method('fetchRow') ->with('res') ->will( - $this->returnValue( - array(null, 'test', '10', '6', "\x00\x0a\x0d\x1a") + $this->returnValueMap( + array( + array('res', array(null, 'test', '10', '6', "\x00\x0a\x0d\x1a")), + array('res', null) + ) ) ); $dbi->expects($this->any())->method('escapeString') From 67501106e0fa6699c95eba039d2688d72ae219ce Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 7 Nov 2016 11:51:47 +0530 Subject: [PATCH 15/32] clear some more tests Signed-off-by: Deven Bansod --- test/classes/plugin/export/ExportSqlTest.php | 13 ++++---- test/libraries/PMA_server_privileges_test.php | 30 +++++++++++++++++++ 2 files changed, 38 insertions(+), 5 deletions(-) diff --git a/test/classes/plugin/export/ExportSqlTest.php b/test/classes/plugin/export/ExportSqlTest.php index 4c1cb35ea9..5f9cdd09ad 100644 --- a/test/classes/plugin/export/ExportSqlTest.php +++ b/test/classes/plugin/export/ExportSqlTest.php @@ -1547,6 +1547,7 @@ class ExportSqlTest extends PMATestCase $GLOBALS['dbi'] = $dbi; $GLOBALS['sql_compatibility'] = 'MSSQL'; $GLOBALS['sql_backquotes'] = true; + $GLOBALS['sql_max_query_size'] = 50000; $GLOBALS['sql_views_as_tables'] = true; $GLOBALS['sql_type'] = 'INSERT'; $GLOBALS['sql_delayed'] = ' DELAYED'; @@ -1651,12 +1652,14 @@ class ExportSqlTest extends PMATestCase ->with('res') ->will($this->returnValue(2)); - $dbi->expects($this->once()) + $dbi->expects($this->exactly(2)) ->method('fetchRow') - ->with('res') ->will( - $this->returnValue( - array(null, null) + $this->returnValueMap( + array( + array('res', array(null, null)), + array('res', null) + ) ) ); @@ -1735,7 +1738,7 @@ class ExportSqlTest extends PMATestCase $GLOBALS['sql_views_as_tables'] = false; $GLOBALS['sql_include_comments'] = true; $GLOBALS['crlf'] = "\n"; - $oldVal = $GLOBALS['sql_compatibility']; + $oldVal = isset($GLOBALS['sql_compatibility']) ? $GLOBALS['sql_compatibility'] : ''; $GLOBALS['sql_compatibility'] = 'NONE'; ob_start(); diff --git a/test/libraries/PMA_server_privileges_test.php b/test/libraries/PMA_server_privileges_test.php index 055ec80b11..d49b8479bc 100644 --- a/test/libraries/PMA_server_privileges_test.php +++ b/test/libraries/PMA_server_privileges_test.php @@ -863,6 +863,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $dbi->expects($this->at(1)) ->method('fetchRow') ->will($this->returnValue(false)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -1102,6 +1105,10 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); $dbi->expects($this->any())->method('fetchResult') ->will($this->returnValue($fields_info)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; @@ -1207,6 +1214,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); $dbi->expects($this->any())->method('fetchResult') ->will($this->returnValue($fields_info)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -1274,6 +1284,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); $dbi->expects($this->any())->method('fetchResult') ->will($this->returnValue($fields_info)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -1349,6 +1362,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); $dbi->expects($this->any())->method('fetchResult') ->will($this->returnValue($fields_info)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -1660,6 +1676,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $dbi->expects($this->any())->method('fetchValue') ->will($this->returnValue($expected_userGroup)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -1722,6 +1741,9 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $dbi->expects($this->any())->method('fetchValue') ->will($this->returnValue($expected_userGroup)); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); $GLOBALS['dbi'] = $dbi; @@ -2225,6 +2247,10 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ) ) ); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $_GET['initial'] = 'A'; $GLOBALS['dbi'] = $dbi; @@ -2260,6 +2286,10 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase $dbi->expects($this->any()) ->method('getError') ->will($this->returnValue('Some error occurred!')); + $dbi->expects($this->any()) + ->method('escapeString') + ->will($this->returnArgument(0)); + $GLOBALS['dbi'] = $dbi; // Test case 1 : empty queries From 06e9b62a2572da393db464896c7c7fd054350fae Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 7 Nov 2016 12:26:24 +0530 Subject: [PATCH 16/32] Remove tests against unsupported versions Remove duplicate test, fix other tests Signed-off-by: Deven Bansod --- test/classes/plugin/export/ExportSqlTest.php | 69 +++-------- test/libraries/PMA_server_privileges_test.php | 115 +++++++++++------- 2 files changed, 89 insertions(+), 95 deletions(-) diff --git a/test/classes/plugin/export/ExportSqlTest.php b/test/classes/plugin/export/ExportSqlTest.php index 5f9cdd09ad..d3c0fe278e 100644 --- a/test/classes/plugin/export/ExportSqlTest.php +++ b/test/classes/plugin/export/ExportSqlTest.php @@ -696,18 +696,8 @@ class ExportSqlTest extends PMATestCase * * @return void */ - public function testExportEventsWithNewerMySQLVersion() + public function testExportEvents() { - $restoreMySQLVersion = "PMANORESTORE"; - - if (! PMA_HAS_RUNKIT) { - $this->markTestSkipped( - 'Cannot redefine constant. Missing runkit extension' - ); - } else { - $restoreMySQLVersion = PMA_MYSQL_INT_VERSION; - runkit_constant_redefine('PMA_MYSQL_INT_VERSION', 50101); - } $GLOBALS['crlf'] = "\n"; $GLOBALS['sql_structure_or_data'] = 'structure'; @@ -729,8 +719,10 @@ class ExportSqlTest extends PMATestCase ->method('getDefinition') ->will( $this->returnValueMap( - array('db', 'EVENT', 'f1', 'f1event'), - array('db', 'EVENT', 'f2', 'f2event') + array( + array('db', 'EVENT', 'f1', null, 'f1event'), + array('db', 'EVENT', 'f2', null, 'f2event') + ) ) ); $dbi->expects($this->any())->method('escapeString') @@ -763,10 +755,6 @@ class ExportSqlTest extends PMATestCase "f2event$$\n", $result ); - - if ($restoreMySQLVersion !== "PMANORESTORE") { - runkit_constant_redefine('PMA_MYSQL_INT_VERSION', $restoreMySQLVersion); - } } /** @@ -774,19 +762,8 @@ class ExportSqlTest extends PMATestCase * * @return void */ - public function testExportDBFooterWithOlderMySQLVersion() + public function testExportDBFooter() { - $restoreMySQLVersion = "PMANORESTORE"; - - if (! PMA_HAS_RUNKIT) { - $this->markTestSkipped( - 'Cannot redefine constant. Missing runkit extension' - ); - } else { - $restoreMySQLVersion = PMA_MYSQL_INT_VERSION; - runkit_constant_redefine('PMA_MYSQL_INT_VERSION', 50100); - } - $GLOBALS['crlf'] = "\n"; $GLOBALS['sql_constraints'] = "SqlConstraints"; $GLOBALS['sql_structure_or_data'] = 'structure'; @@ -810,10 +787,6 @@ class ExportSqlTest extends PMATestCase 'SqlConstraints', $result ); - - if ($restoreMySQLVersion !== "PMANORESTORE") { - runkit_constant_redefine('PMA_MYSQL_INT_VERSION', $restoreMySQLVersion); - } } /** @@ -983,7 +956,7 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->once()) ->method('numRows') ->with('res') - ->will($this->returnValue(2)); + ->will($this->returnValue(1)); $dbi->expects($this->any()) ->method('fetchValue') @@ -1026,14 +999,12 @@ class ExportSqlTest extends PMATestCase ") ENGINE=InnoDB AUTO_INCREMENT=16050 DEFAULT CHARSET=utf8\n" ); - $dbi->expects($this->exactly(2)) + $dbi->expects($this->exactly(1)) ->method('fetchRow') - ->with('res') ->will( $this->returnValueMap( array( - array('res', $row), - array('res', null) + array('res', $row) ) ) ); @@ -1518,14 +1489,9 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->exactly(2)) ->method('fetchRow') - ->with('res') - ->will( - $this->returnValueMap( - array( - array('res', array(null, 'test', '10', '6', "\x00\x0a\x0d\x1a")), - array('res', null) - ) - ) + ->willReturnOnConsecutiveCalls( + array(null, 'test', '10', '6', "\x00\x0a\x0d\x1a"), + null ); $dbi->expects($this->any())->method('escapeString') ->will($this->returnArgument(0)); @@ -1654,13 +1620,9 @@ class ExportSqlTest extends PMATestCase $dbi->expects($this->exactly(2)) ->method('fetchRow') - ->will( - $this->returnValueMap( - array( - array('res', array(null, null)), - array('res', null) - ) - ) + ->willReturnOnConsecutiveCalls( + array(null, null), + null ); $_table = $this->getMockBuilder('PMA\libraries\Table') @@ -1740,6 +1702,7 @@ class ExportSqlTest extends PMATestCase $GLOBALS['crlf'] = "\n"; $oldVal = isset($GLOBALS['sql_compatibility']) ? $GLOBALS['sql_compatibility'] : ''; $GLOBALS['sql_compatibility'] = 'NONE'; + $GLOBALS['sql_backquotes'] = true; ob_start(); $this->assertTrue( diff --git a/test/libraries/PMA_server_privileges_test.php b/test/libraries/PMA_server_privileges_test.php index d49b8479bc..28cc21830d 100644 --- a/test/libraries/PMA_server_privileges_test.php +++ b/test/libraries/PMA_server_privileges_test.php @@ -638,48 +638,6 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase ); } - /** - * Test for PMA_getSqlQueriesForDisplayAndAddUser - * - * @return void - */ - public function testPMAGetSqlQueriesForDisplayAndAddNewUser() - { - $username = 'pma_username'; - $hostname = 'pma_hostname'; - $password = 'pma_password'; - $_REQUEST['adduser_submit'] = true; - $_POST['pred_username'] = 'any'; - $_POST['pred_hostname'] = 'localhost'; - $_POST['pred_password'] = 'keep'; - $_REQUEST['createdb-3'] = true; - $_REQUEST['authentication_plugin'] = 'mysql_native_password'; - - list($create_user_real, $create_user_show, $real_sql_query, $sql_query) - = PMA_getSqlQueriesForDisplayAndAddUser( - $username, $hostname, - (isset($password) ? $password : '') - ); - $this->assertEquals( - "CREATE USER 'pma_username'@'pma_hostname' " - . "IDENTIFIED WITH mysql_native_password AS 'pma_password';", - $create_user_real - ); - $this->assertEquals( - "CREATE USER 'pma_username'@'pma_hostname' " - . "IDENTIFIED WITH mysql_native_password AS '***';", - $create_user_show - ); - $this->assertEquals( - "GRANT USAGE ON *.* TO 'pma_username'@'pma_hostname' REQUIRE NONE;", - $real_sql_query - ); - $this->assertEquals( - "GRANT USAGE ON *.* TO 'pma_username'@'pma_hostname' REQUIRE NONE;", - $sql_query - ); - } - /** * Test for PMA_addUser * @@ -687,6 +645,17 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase */ public function testPMAAddUser() { + // Case 1 : Test with Newer version + $restoreMySQLVersion = "PMANORESTORE"; + if (! PMA_HAS_RUNKIT) { + $this->markTestSkipped( + 'Cannot redefine constant. Missing runkit extension' + ); + } else { + $restoreMySQLVersion = PMA_MYSQL_INT_VERSION; + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', 50706); + } + $dbname = 'pma_dbname'; $username = 'pma_username'; $hostname = 'pma_hostname'; @@ -722,6 +691,53 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase false, $_add_user_error ); + + if ($restoreMySQLVersion !== "PMANORESTORE") { + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', $restoreMySQLVersion); + } + + + // Case 2 : Test with older versions + $restoreMySQLVersion = "PMANORESTORE"; + if (! PMA_HAS_RUNKIT) { + $this->markTestSkipped( + 'Cannot redefine constant. Missing runkit extension' + ); + } else { + $restoreMySQLVersion = PMA_MYSQL_INT_VERSION; + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', 50506); + } + + list( + $ret_message,,, $sql_query, + $_add_user_error + ) = PMA_addUser( + $dbname, + $username, + $hostname, + $dbname, + true + ); + + $this->assertEquals( + 'You have added a new user.', + $ret_message->getMessage() + ); + $this->assertEquals( + "CREATE USER ''@'localhost';" + . "GRANT USAGE ON *.* TO ''@'localhost' REQUIRE NONE;" + . "SET PASSWORD FOR ''@'localhost' = '***';" + . "GRANT ALL PRIVILEGES ON `pma_dbname`.* TO ''@'localhost';", + $sql_query + ); + $this->assertEquals( + false, + $_add_user_error + ); + + if ($restoreMySQLVersion !== "PMANORESTORE") { + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', $restoreMySQLVersion); + } } /** @@ -960,6 +976,17 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase */ public function testPMAGetSqlQueriesForDisplayAndAddUser() { + $restoreMySQLVersion = "PMANORESTORE"; + + if (! PMA_HAS_RUNKIT) { + $this->markTestSkipped( + 'Cannot redefine constant. Missing runkit extension' + ); + } else { + $restoreMySQLVersion = PMA_MYSQL_INT_VERSION; + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', 50706); + } + $username = "PMA_username"; $hostname = "PMA_hostname"; $password = "pma_password"; @@ -1012,6 +1039,10 @@ class PMA_ServerPrivileges_Test extends PHPUnit_Framework_TestCase "You have added a new user.", $message->getMessage() ); + + if ($restoreMySQLVersion !== "PMANORESTORE") { + runkit_constant_redefine('PMA_MYSQL_INT_VERSION', $restoreMySQLVersion); + } } /** From 1f439a4dcc133f7f87846f983c980145c16d65ca Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Mon, 7 Nov 2016 22:10:18 +0530 Subject: [PATCH 17/32] Use a work around for testing if numRecords at least N Fix #12257 Signed-off-by: Deven Bansod --- libraries/Table.php | 43 +++++++++++++++++++++++++ libraries/relation.lib.php | 8 +++-- test/classes/TableTest.php | 66 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 114 insertions(+), 3 deletions(-) diff --git a/libraries/Table.php b/libraries/Table.php index 9caba7e6e4..afdc1e5a0e 100644 --- a/libraries/Table.php +++ b/libraries/Table.php @@ -499,6 +499,49 @@ class Table return $query; } // end function + /** + * Checks if the number of records in a table is at least equal to + * $min_records + * + * @param int $min_records Number of records to check for in a table + * + * @return bool True, if at least $min_records exist, False otherwise. + */ + public function checkIfMinRecordsExist($min_records = 0) + { + $check_query = 'SELECT '; + $fieldsToSelect = ''; + + $uniqueFields = $this->getUniqueColumns(true, false); + if (count($uniqueFields) > 0) { + $fieldsToSelect = implode(', ', $uniqueFields); + } else { + $indexedCols = $this->getIndexedColumns(true, false); + if (count($indexedCols) > 0) { + $fieldsToSelect = implode(', ', $indexedCols); + } else { + $fieldsToSelect = '*'; + } + } + + $check_query .= $fieldsToSelect + . ' FROM ' . $this->getFullName(true) + . ' LIMIT ' . $min_records; + + $res = $GLOBALS['dbi']->tryQuery( + $check_query + ); + + if ($res !== false) { + $num_records = $GLOBALS['dbi']->numRows($res); + if ($num_records >= $min_records) { + return true; + } + } + + return false; + } + /** * Counts and returns (or displays) the number of records in a table * diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index 20ed015eae..f5be686b07 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -1362,11 +1362,13 @@ function PMA_getForeignData( // We could also do the SELECT anyway, with a LIMIT, and ensure that // the current value of the field is one of the choices. - $the_total = $GLOBALS['dbi']->getTable($foreign_db, $foreign_table) - ->countRecords(true); + // Check if table has more rows than specified by + // $GLOBALS['cfg']['ForeignKeyMaxLimit'] + $moreThanLimit = $GLOBALS['dbi']->getTable($foreign_db, $foreign_table) + ->checkIfMinRecordsExist($GLOBALS['cfg']['ForeignKeyMaxLimit']); if ($override_total == true - || $the_total < $GLOBALS['cfg']['ForeignKeyMaxLimit'] + || !$moreThanLimit ) { // foreign_display can be false if no display field defined: $foreign_display = PMA_getDisplayField($foreign_db, $foreign_table); diff --git a/test/classes/TableTest.php b/test/classes/TableTest.php index 08b9a40d3a..a7497a9379 100644 --- a/test/classes/TableTest.php +++ b/test/classes/TableTest.php @@ -992,6 +992,72 @@ class TableTest extends PMATestCase ); } + /** + * Test for checkIfMinRecordsExist + * + * @return void + */ + public function testCheckIfMinRecordsExist() + { + $old_dbi = $GLOBALS['dbi']; + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any()) + ->method('tryQuery') + ->will($this->returnValue('res')); + $dbi->expects($this->any()) + ->method('numRows') + ->willReturnOnConsecutiveCalls( + 0, + 10, + 200 + ); + $dbi->expects($this->any()) + ->method('fetchResult') + ->willReturnOnConsecutiveCalls( + array('`one_pk`'), + + array(), // No Uniques found + array('`one_ind`', '`sec_ind`'), + + array(), // No Uniques found + array() // No Indexed found + ); + + $GLOBALS['dbi'] = $dbi; + + $table = 'PMA_BookMark'; + $db = 'PMA'; + $tableObj = new Table($table, $db); + + // Case 1 : Check if table is non-empty + $return = $tableObj->checkIfMinRecordsExist(); + $expect = true; + $this->assertEquals( + $expect, + $return + ); + + // Case 2 : Check if table contains at least 100 + $return = $tableObj->checkIfMinRecordsExist(100); + $expect = false; + $this->assertEquals( + $expect, + $return + ); + + // Case 3 : Check if table contains at least 100 + $return = $tableObj->checkIfMinRecordsExist(100); + $expect = true; + $this->assertEquals( + $expect, + $return + ); + + $GLOBALS['dbi'] = $old_dbi; + } + /** * Test for countRecords * From cb7abad0b55fcbc991c223c7925a6d3f729d0939 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Wed, 9 Nov 2016 10:40:00 +0530 Subject: [PATCH 18/32] Remove call to old methods, fix tests Remove definition of old method. Remove related tests Signed-off-by: Deven Bansod --- libraries/DatabaseInterface.php | 2 +- libraries/Util.php | 40 ---------------- libraries/rte/rte_list.lib.php | 6 +-- libraries/rte/rte_routines.lib.php | 2 +- .../common/PMA_quoting_slashing_test.php | 48 ------------------- .../rte/PMA_RTN_getQueryFromRequest_test.php | 20 ++++++++ 6 files changed, 25 insertions(+), 93 deletions(-) diff --git a/libraries/DatabaseInterface.php b/libraries/DatabaseInterface.php index 8425ebfda3..85350d72a4 100644 --- a/libraries/DatabaseInterface.php +++ b/libraries/DatabaseInterface.php @@ -428,7 +428,7 @@ class DatabaseInterface // comparison (if we are looking for the db Aa we don't want // to find the db aa) $this_databases = array_map( - 'PMA\libraries\Util::sqlAddSlashes', + array($this, 'escapeString'), $databases ); diff --git a/libraries/Util.php b/libraries/Util.php index a53eff10cf..8f847711be 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -285,46 +285,6 @@ class Util . $max_size . '" />'; } - /** - * Add slashes before "'" and "\" characters so a value containing them can - * be used in a sql comparison. - * - * @param string $a_string the string to slash - * @param bool $is_like whether the string will be used in a 'LIKE' clause - * (it then requires two more escaped sequences) or not - * @param bool $crlf whether to treat cr/lfs as escape-worthy entities - * (converts \n to \\n, \r to \\r) - * @param bool $php_code whether this function is used as part of the - * "Create PHP code" dialog - * - * @return string the slashed string - * - * @access public - */ - public static function sqlAddSlashes( - $a_string = '', - $is_like = false, - $crlf = false, - $php_code = false - ) { - if ($is_like) { - $a_string = str_replace('\\', '\\\\\\\\', $a_string); - } else { - $a_string = str_replace('\\', '\\\\', $a_string); - } - - if ($crlf) { - $a_string = strtr( - $a_string, - array("\n" => '\n', "\r" => '\r', "\t" => '\t') - ); - } - - $a_string = str_replace('\'', '\\\'', $a_string); - - return $a_string; - } // end of the 'sqlAddSlashes()' function - /** * Add slashes before "_" and "%" characters for using them in MySQL * database, table and field names. diff --git a/libraries/rte/rte_list.lib.php b/libraries/rte/rte_list.lib.php index 85d27d6b54..83d546e7c3 100644 --- a/libraries/rte/rte_list.lib.php +++ b/libraries/rte/rte_list.lib.php @@ -200,9 +200,9 @@ function PMA_RTN_getRowForList($routine, $rowclass = '') // this is for our purpose to decide whether to // show the edit link or not, so we need the DEFINER for the routine $where = "ROUTINE_SCHEMA " . PMA\libraries\Util::getCollateForIS() . "=" - . "'" . PMA\libraries\Util::sqlAddSlashes($db) . "' " - . "AND SPECIFIC_NAME='" . PMA\libraries\Util::sqlAddSlashes($routine['name']) . "'" - . "AND ROUTINE_TYPE='" . PMA\libraries\Util::sqlAddSlashes($routine['type']) . "'"; + . "'" . $GLOBALS['dbi']->escapeString($db) . "' " + . "AND SPECIFIC_NAME='" . $GLOBALS['dbi']->escapeString($routine['name']) . "'" + . "AND ROUTINE_TYPE='" . $GLOBALS['dbi']->escapeString($routine['type']) . "'"; $query = "SELECT `DEFINER` FROM INFORMATION_SCHEMA.ROUTINES WHERE $where;"; $routine_definer = $GLOBALS['dbi']->fetchValue($query, 0, 0, $GLOBALS['controllink']); diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index cee08f43c0..238b006a68 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -1267,7 +1267,7 @@ function PMA_RTN_getQueryFromRequest() $query .= ' '; } if (! empty($_REQUEST['item_comment'])) { - $query .= "COMMENT '" . PMA\libraries\Util::sqlAddslashes($_REQUEST['item_comment']) + $query .= "COMMENT '" . $GLOBALS['dbi']->escapeString($_REQUEST['item_comment']) . "' "; } if (isset($_REQUEST['item_isdeterministic'])) { diff --git a/test/libraries/common/PMA_quoting_slashing_test.php b/test/libraries/common/PMA_quoting_slashing_test.php index 5431fc8831..1cf9e30f31 100644 --- a/test/libraries/common/PMA_quoting_slashing_test.php +++ b/test/libraries/common/PMA_quoting_slashing_test.php @@ -20,54 +20,6 @@ */ class PMA_QuotingSlashing_Test extends PHPUnit_Framework_TestCase { - - /** - * sqlAddslashes test - * - * @return void - */ - public function testAddSlashes() - { - $string = "\'test''\''\'\r\t\n"; - - $this->assertEquals( - "\\\\\\\\\'test\'\'\\\\\\\\\'\'\\\\\\\\\'\\r\\t\\n", - PMA\libraries\Util::sqlAddSlashes($string, true, true, true) - ); - $this->assertEquals( - "\\\\\\\\\\'test\\'\\'\\\\\\\\\\'\\'\\\\\\\\\\'\\r\\t\\n", - PMA\libraries\Util::sqlAddSlashes($string, true, true, false) - ); - $this->assertEquals( - "\\\\\\\\\'test\'\'\\\\\\\\\'\'\\\\\\\\\'\r\t\n", - PMA\libraries\Util::sqlAddSlashes($string, true, false, true) - ); - $this->assertEquals( - "\\\\\\\\\\'test\\'\\'\\\\\\\\\\'\\'\\\\\\\\\\'\r\t\n", - PMA\libraries\Util::sqlAddSlashes($string, true, false, false) - ); - $this->assertEquals( - "\\\\\'test\'\'\\\\\'\'\\\\\'\\r\\t\\n", - PMA\libraries\Util::sqlAddSlashes($string, false, true, true) - ); - $this->assertEquals( - "\\\\\\'test\\'\\'\\\\\\'\\'\\\\\\'\\r\\t\\n", - PMA\libraries\Util::sqlAddSlashes($string, false, true, false) - ); - $this->assertEquals( - "\\\\\'test\'\'\\\\\'\'\\\\\'\r\t\n", - PMA\libraries\Util::sqlAddSlashes($string, false, false, true) - ); - $this->assertEquals( - "\\\\\\'test\\'\\'\\\\\\'\\'\\\\\\'\r\t\n", - PMA\libraries\Util::sqlAddSlashes($string, false, false, false) - ); - $this->assertEquals( - "\\\\\\'", - PMA\libraries\Util::sqlAddSlashes('\\\'') - ); - } - /** * data provider for PMA\libraries\Util::unQuote test * diff --git a/test/libraries/rte/PMA_RTN_getQueryFromRequest_test.php b/test/libraries/rte/PMA_RTN_getQueryFromRequest_test.php index 58d98950ab..a12394445c 100644 --- a/test/libraries/rte/PMA_RTN_getQueryFromRequest_test.php +++ b/test/libraries/rte/PMA_RTN_getQueryFromRequest_test.php @@ -48,10 +48,30 @@ class PMA_RTN_GetQueryFromRequest_Test extends PHPUnit_Framework_TestCase $errors = array(); PMA_RTN_setGlobals(); + $old_dbi = isset($GLOBALS['dbi']) ? $GLOBALS['dbi'] : null; + $dbi = $this->getMockBuilder('PMA\libraries\DatabaseInterface') + ->disableOriginalConstructor() + ->getMock(); + $dbi->expects($this->any()) + ->method('escapeString') + ->will( + $this->returnValueMap( + array( + array('foo', null, 'foo'), + array("foo's bar", null, "foo\'s bar"), + array('', null, '') + ) + ) + ); + $GLOBALS['dbi'] = $dbi; + unset($_REQUEST); $_REQUEST = $request; $this->assertEquals($query, PMA_RTN_getQueryFromRequest()); $this->assertEquals($num_err, count($errors)); + + // reset + $GLOBALS['dbi'] = $old_dbi; } /** From 2309ef57d2065277339513590b24b02d4115cc39 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Wed, 9 Nov 2016 21:16:00 +0530 Subject: [PATCH 19/32] Add LEFT JOIN for different constraints If there are two or more columns in the same constraint (foreign key), we should use AND to concatenate the conditions on LEFT JOIN for both the columns Fix #12652 Signed-off-by: Deven Bansod --- js/pmd/history.js | 37 ++++++++++++++++++++++++++++--------- libraries/pmd_common.php | 2 +- 2 files changed, 29 insertions(+), 10 deletions(-) diff --git a/js/pmd/history.js b/js/pmd/history.js index 9f70c03d46..af44d4e780 100644 --- a/js/pmd/history.js +++ b/js/pmd/history.js @@ -658,6 +658,10 @@ function query_from() var key2; var key3; var parts1; + + // the constraints that have been used in the LEFT JOIN + var constraints_added = []; + for (i = 0; i < history_array.length; i++) { from_array.push(history_array[i].get_tab()); } @@ -666,6 +670,7 @@ function query_from() temp = tab_left.shift(); quer = '`' + temp + '`'; tab_used.push(temp); + // if master table (key2) matches with tab used get all keys and check if tab_left matches // after this check if master table (key2) matches with tab left then check if any foreign matches with master . for (i = 0; i < 2; i++) { @@ -677,11 +682,18 @@ function query_from() for (key3 in contr[K][key][key2]) { parts1 = contr[K][key][key2][key3][0].split("."); if (found(tab_left, parts1[1]) > 0) { - query += "\n" + 'LEFT JOIN '; - query += '`' + parts1[1] + '` ON '; - query += '`' + parts[1] + '`.`' + key3 + '` = '; - query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` '; - t_tab_left.push(parts1[1]); + if (found(constraints_added, key) > 0) { + query += ' AND ' + '`' + parts[1] + '`.`' + key3 + '` = '; + query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` '; + } else { + query += "\n" + 'LEFT JOIN '; + query += '`' + parts[1] + '` ON '; + query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` = '; + query += '`' + parts[1] + '`.`' + key3 + '` '; + + constraints_added.push(key); + } + t_tab_left.push(parts[1]); } } } @@ -701,10 +713,17 @@ function query_from() for (key3 in contr[K][key][key2]) { parts1 = contr[K][key][key2][key3][0].split("."); if (found(tab_used, parts1[1]) > 0) { - query += "\n" + 'LEFT JOIN '; - query += '`' + parts[1] + '` ON '; - query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` = '; - query += '`' + parts[1] + '`.`' + key3 + '` '; + if (found(constraints_added, key) > 0) { + query += ' AND ' + '`' + parts[1] + '`.`' + key3 + '` = '; + query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` '; + } else { + query += "\n" + 'LEFT JOIN '; + query += '`' + parts[1] + '` ON '; + query += '`' + parts1[1] + '`.`' + contr[K][key][key2][key3][1] + '` = '; + query += '`' + parts[1] + '`.`' + key3 + '` '; + + constraints_added.push(key); + } t_tab_left.push(parts[1]); } } diff --git a/libraries/pmd_common.php b/libraries/pmd_common.php index 90ac20897c..c73b00a933 100644 --- a/libraries/pmd_common.php +++ b/libraries/pmd_common.php @@ -141,7 +141,7 @@ function PMA_getScriptContr() if ($row !== false) { foreach ($row['foreign_keys_data'] as $one_key) { foreach ($one_key['index_list'] as $index => $one_field) { - $con['C_NAME'][$i] = ''; + $con['C_NAME'][$i] = $one_key['constraint']; $con['DTN'][$i] = urlencode($GLOBALS['db'] . "." . $val[0]); $con['DCN'][$i] = urlencode($one_field); $con['STN'][$i] = urlencode( From 94ef1a4f7cdd46bb181719ed0d6deb9375e54043 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sevdimali=20=C4=B0sa?= Date: Tue, 8 Nov 2016 18:50:46 +0000 Subject: [PATCH 20/32] Translated using Weblate (Azerbaijani) Currently translated at 53.3% (1717 of 3219 strings) [CI skip] --- po/az.po | 127 +++++++++++++++++++------------------------------------ 1 file changed, 43 insertions(+), 84 deletions(-) diff --git a/po/az.po b/po/az.po index 430677bdfc..df24db7edd 100644 --- a/po/az.po +++ b/po/az.po @@ -4,16 +4,16 @@ msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-10-25 11:13+0200\n" -"PO-Revision-Date: 2016-09-06 06:15+0000\n" +"PO-Revision-Date: 2016-11-08 18:50+0000\n" "Last-Translator: Sevdimali İsa \n" -"Language-Team: Azerbaijani \n" +"Language-Team: Azerbaijani " +"\n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 2.8\n" +"X-Generator: Weblate 2.9\n" #: changelog.php:38 license.php:33 #, php-format @@ -584,24 +584,20 @@ msgid "Bookmark %s has been created." msgstr "Əlfəcin %s yaradıldı." #: import.php:697 -#, fuzzy, php-format -#| msgid "Import has been successfully finished, %d queries executed." +#, php-format msgid "Import has been successfully finished, %d query executed." msgid_plural "Import has been successfully finished, %d queries executed." msgstr[0] "İmport uğurla başa çatdı, %d sorğu yerinə yetirlidi." msgstr[1] "İmport uğurla başa çatdı, %d sorğu yerinə yetirlidi." #: import.php:728 -#, fuzzy, php-format -#| msgid "" -#| "Script timeout passed, if you want to finish import, please resubmit same " -#| "file and import will resume." +#, php-format msgid "" "Script timeout passed, if you want to finish import, please %sresubmit the " "same file%s and import will resume." msgstr "" -"Skript zaman limitini keçdi, importu tamamlamaq üçün zəhmət olmasa, həmin " -"faylı yenidən göndərin və import davam edəcəkdir." +"Skript zaman limitini keçdi, importu tamamlamaq üçün zəhmət olmasa, %shəmin " +"faylı yenidən göndərin%s və import davam edəcəkdir." #: import.php:738 msgid "" @@ -639,10 +635,8 @@ msgstr "" "dəyişdirməyin. Daha ətraflı məlumat üçün: %s." #: index.php:161 -#, fuzzy -#| msgid "General Settings" msgid "General settings" -msgstr "Ümumi Tənzimləmələr" +msgstr "Ümumi ayarlar" #: index.php:191 js/messages.php:628 #: libraries/display_change_password.lib.php:50 @@ -655,10 +649,8 @@ msgid "Server connection collation" msgstr "Server qoşulma qarşılaşdırması" #: index.php:230 -#, fuzzy -#| msgid "Appearance Settings" msgid "Appearance settings" -msgstr "Mövzu Tənzimləmələri" +msgstr "Mövzu ayarları" #: index.php:262 prefs_manage.php:284 msgid "More settings" @@ -707,10 +699,8 @@ msgid "PHP extension:" msgstr "PHP genişlənməsi:" #: index.php:351 -#, fuzzy -#| msgid "PHP Version:" msgid "PHP version:" -msgstr "PHP Versiyası:" +msgstr "PHP versiyası:" #: index.php:372 msgid "Version information:" @@ -783,7 +773,7 @@ msgstr "" #: index.php:509 msgid "The secret passphrase in configuration (blowfish_secret) is too short." -msgstr "" +msgstr "Konfiqurasiya içindəki (blowfish_secret) gizli parol çox qısadır." #: index.php:523 msgid "" @@ -807,6 +797,8 @@ msgstr "" msgid "" "Or alternately go to 'Operations' tab of any database to set it up there." msgstr "" +"Və yaxud alternativ olaraq ayarlamaq üçün isə hər hansı bazada " +"'Əməliyyatlar' bölməsinə gedin." #: index.php:589 #, php-format @@ -864,10 +856,8 @@ msgid "Delete tracking data for these versions?" msgstr "Bu versiyalar üçün izləmə verilənləri silinsin?" #: js/messages.php:55 -#, fuzzy -#| msgid "Delete tracking data row from report" msgid "Delete entry from tracking report?" -msgstr "Hesabatdan izlənən verilən sətirini sil" +msgstr "İzləmə Hesabatından giriş silinsinmi?" #: js/messages.php:56 msgid "Deleting tracking data" @@ -906,16 +896,12 @@ msgid "Do you really want to revoke the selected user(s) ?" msgstr "Seçilən istifadəçiləri ləğv etmək istədiyinizə əminsinizmi?" #: js/messages.php:70 -#, fuzzy -#| msgid "Do you really want to delete this bookmark?" msgid "Do you really want to delete this central column?" -msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" +msgstr "Bu mərkəzi sütunu silmək istədiyinizə əminsinizmi?" #: js/messages.php:72 -#, fuzzy -#| msgid "Do you really want to delete the search \"%s\"?" msgid "Do you really want to delete the selected items?" -msgstr "\"%s\" axtarışını silmək istədiyinizdən əminsinizmi?" +msgstr "Seçilmiş olanları silmək istədiyinizdən əminsinizmi?" #: js/messages.php:74 msgid "" @@ -936,10 +922,8 @@ msgid "Do you really want to remove partitioning?" msgstr "\"%s\" axtarışını silmək istədiyinizdən əminsinizmi?" #: js/messages.php:81 -#, fuzzy -#| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to RESET SLAVE?" -msgstr "\"%s\" sorğusunu icra etmək istəyirsiniz?" +msgstr "SLAVE-i SIFIRLAMAQ istəyirsinizmi?" #: js/messages.php:83 msgid "" @@ -975,10 +959,8 @@ msgid "" msgstr "" #: js/messages.php:106 -#, fuzzy -#| msgid "Save & Close" msgid "Save & close" -msgstr "Yaddaşa ver və Bağla" +msgstr "Yaddaşa ver və bağla" #: js/messages.php:107 libraries/config/FormDisplay.tpl.php:424 #: libraries/insert_edit.lib.php:1617 prefs_manage.php:360 prefs_manage.php:371 @@ -986,10 +968,8 @@ msgid "Reset" msgstr "Sıfırla" #: js/messages.php:108 -#, fuzzy -#| msgid "Reset All" msgid "Reset all" -msgstr "Hamısını Sıfırla" +msgstr "Hamısını sıfırla" #: js/messages.php:111 msgid "Missing value in the form!" @@ -1012,8 +992,6 @@ msgid "Add index" msgstr "İndeks əlavə et" #: js/messages.php:116 -#, fuzzy -#| msgid "Edit Index" msgid "Edit index" msgstr "İndeksi redaktə et" @@ -1031,10 +1009,8 @@ msgid "Create composite index" msgstr "Kompleks indeks yarat" #: js/messages.php:120 -#, fuzzy -#| msgid "Fields enclosed by" msgid "Composite with:" -msgstr "Saheler ehate edildiyi işare" +msgstr "Bununla birləşmiş:" #: js/messages.php:121 msgid "Please select column(s) for the index." @@ -1065,10 +1041,8 @@ msgstr "SQL sorğusu:" #. l10n: Default label for the y-Axis of Charts #: js/messages.php:136 -#, fuzzy -#| msgid "Y Values" msgid "Y values" -msgstr "Y Qiyməti" +msgstr "Y qiymətləri" #: js/messages.php:139 msgid "The host name is empty!" @@ -1098,26 +1072,20 @@ msgid "Close" msgstr "Bağla" #: js/messages.php:147 -#, fuzzy -#| msgid "The number of pages created." msgid "Template was created." -msgstr "Yaradılmış səhifələrin sayı." +msgstr "Şablon yaradıldı." #: js/messages.php:148 msgid "Template was loaded." -msgstr "" +msgstr "Şablon yükləndi." #: js/messages.php:149 -#, fuzzy -#| msgid "The profile has been updated." msgid "Template was updated." -msgstr "Profil yenilendi." +msgstr "Şablon yeniləndi." #: js/messages.php:150 -#, fuzzy -#| msgid "The row has been deleted." msgid "Template was deleted." -msgstr "Sətir silindi." +msgstr "Şablon silindi." #. l10n: Other, small valued, queries #: js/messages.php:153 libraries/ServerStatusData.php:130 @@ -1164,14 +1132,12 @@ msgid "Query cache used" msgstr "İstifadə edilən sorğu keşi" #: js/messages.php:175 -#, fuzzy -#| msgid "System CPU Usage" msgid "System CPU usage" msgstr "Sistem prosessoru istifadəsi" #: js/messages.php:176 msgid "System memory" -msgstr "Sistem Yaddaşı" +msgstr "Sistem yaddaşı" #: js/messages.php:177 msgid "System swap" @@ -1191,7 +1157,7 @@ msgstr "Keş edilmiş yaddaş" #: js/messages.php:182 msgid "Buffered memory" -msgstr "" +msgstr "Bufer yaddaşı" #: js/messages.php:183 msgid "Free memory" @@ -1202,28 +1168,20 @@ msgid "Used memory" msgstr "İstifadə olunan yaddaş" #: js/messages.php:186 -#, fuzzy -#| msgid "Total Swap" msgid "Total swap" msgstr "Toplam mübadilə" #: js/messages.php:187 -#, fuzzy -#| msgid "Cached Swap" msgid "Cached swap" -msgstr "Keş edilmiş mübadilə" +msgstr "Keş olunmuş mübadilə" #: js/messages.php:188 -#, fuzzy -#| msgid "Used Swap" msgid "Used swap" msgstr "İstifadə olunan mübadilə" #: js/messages.php:189 -#, fuzzy -#| msgid "Free Swap" msgid "Free swap" -msgstr "Sərbəst mübadilə" +msgstr "Boş mübadilə" #: js/messages.php:191 msgid "Bytes sent" @@ -1331,11 +1289,11 @@ msgstr "İzləməni dayandır" #: js/messages.php:217 libraries/server_status_processes.lib.php:36 msgid "Start auto refresh" -msgstr "" +msgstr "Avto yenilənməni başlat" #: js/messages.php:218 msgid "Stop auto refresh" -msgstr "" +msgstr "Avto yenilənməni dayandır" #: js/messages.php:220 msgid "general_log and slow_query_log are enabled." @@ -1351,7 +1309,7 @@ msgstr "slow_query_log aktivləşdirildi." #: js/messages.php:223 msgid "slow_query_log and general_log are disabled." -msgstr "" +msgstr "slow_query_log və general_log deaktiv edildi." #: js/messages.php:224 msgid "log_output is not set to TABLE." @@ -1368,6 +1326,9 @@ msgid "" "than %d seconds. It is advisable to set this long_query_time 0-2 seconds, " "depending on your system." msgstr "" +"slow_query_log deaktiv edildi, ancaq server sadəcə %d saniyədən daha çox " +"çəkən sorğuları loglayır. Bu long_query_time-ın, sisteminizə bağlı olaraq 0-" +"2 saniyəyə ayarlanmasını tövsiyyə edirik." #: js/messages.php:231 #, php-format @@ -1442,15 +1403,15 @@ msgstr "Vahid" #: js/messages.php:257 msgid "From slow log" -msgstr "" +msgstr "Yavaş logdan" #: js/messages.php:258 msgid "From general log" -msgstr "" +msgstr "Ümumi logdan" #: js/messages.php:260 msgid "The database name is not known for this query in the server's logs." -msgstr "" +msgstr "Serverin logunda bu sorğu üçün baza adı bilinmir." #: js/messages.php:262 msgid "Analysing logs" @@ -1458,7 +1419,7 @@ msgstr "Loglar analiz edilir" #: js/messages.php:264 msgid "Analysing & loading logs. This may take a while." -msgstr "" +msgstr "Loglar analiz olunur və yüklənir. Bu bir az çəkə bilər." #: js/messages.php:265 msgid "Cancel request" @@ -1553,7 +1514,7 @@ msgstr "Söz/düzənli ifadəyə görə sorğuları filtrlə:" #: js/messages.php:299 msgid "Group queries, ignoring variable data in WHERE clauses" -msgstr "" +msgstr "Qrup sorğuları, WHERE içərisindəki dəyişkən dəyərləri göz ardı edildi" #: js/messages.php:300 msgid "Sum of grouped rows:" @@ -1569,7 +1530,7 @@ msgstr "Loglar yüklənir" #: js/messages.php:304 msgid "Monitor refresh failed" -msgstr "" +msgstr "Monitor yeniləmə uğursuz oldu" #: js/messages.php:306 msgid "" @@ -1617,10 +1578,8 @@ msgid "No files available on server for import!" msgstr "İmport üçün serverdə fayllar yoxdur!" #: js/messages.php:326 -#, fuzzy -#| msgid "Analyse Query" msgid "Analyse query" -msgstr "Sorğunu Analiz et" +msgstr "Sorğunu analiz et" #: js/messages.php:330 msgid "Advisor system" From 9fb7293eef3a5c07a58a12ea571e3de0830ca9a9 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 8 Nov 2016 14:56:53 +0000 Subject: [PATCH 21/32] Translated using Weblate (French) Currently translated at 99.7% (3211 of 3219 strings) [CI skip] --- po/fr.po | 24 ++++++++++++++++-------- 1 file changed, 16 insertions(+), 8 deletions(-) diff --git a/po/fr.po b/po/fr.po index 178e108f68..4f545f2c52 100644 --- a/po/fr.po +++ b/po/fr.po @@ -4,8 +4,8 @@ msgstr "" "Project-Id-Version: phpMyAdmin-docs 4.0.0-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" "POT-Creation-Date: 2016-10-25 11:13+0200\n" -"PO-Revision-Date: 2016-11-07 15:59+0000\n" -"Last-Translator: Nils Van Zuijlen \n" +"PO-Revision-Date: 2016-11-08 14:56+0000\n" +"Last-Translator: Marc Delisle \n" "Language-Team: French " "\n" "Language: fr\n" @@ -1826,7 +1826,7 @@ msgstr "Export" #: js/messages.php:389 msgid "No routine is exportable. Required privileges may be lacking." msgstr "" -"Aucune routine n'est exportable. Des privilèges requis manquent sans-doute." +"Aucune routine n’est exportable. Des privilèges requis manquent sans-doute." #: js/messages.php:392 libraries/rte/rte_routines.lib.php:754 msgid "ENUM/SET editor" @@ -2969,8 +2969,8 @@ msgstr "Échec de formatage de la chaîne pour la règle «%s»." #, php-format msgid "Error in reading file: The file '%s' does not exist or is not readable!" msgstr "" -"Erreur lors de la lecture du fichier: Le fichier '%s' n'existe pas ou n'est " -"pas lisible !" +"Erreur dans la lecture du fichier : Le fichier '%s' n'existe pas ou ne peut " +"être lu !" #: libraries/Advisor.php:492 #, php-format @@ -12010,6 +12010,9 @@ msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " "necessary privileges to view/export this routine" msgstr "" +"Aucune routine avec le nom %1$s trouvé dans la base de données %2$s. Vous " +"manquez peut-être des privilèges nécessaires pour afficher/exporter cette " +"routine." #: libraries/rte/rte_words.lib.php:42 #, php-format @@ -12356,6 +12359,9 @@ msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" +"Permet à l’utilisateur de donner à d’autres utilisateurs ou supprimer à d’" +"autres utilisateurs des privilèges que l’utilisateur possède sur cette " +"routine." #: libraries/server_privileges.lib.php:1042 msgid "Allows altering and dropping this routine." @@ -13900,13 +13906,15 @@ msgstr "Mot clef inattendu." #: libraries/sql-parser/src/Components/CaseExpression.php:202 msgid "Unexpected end of CASE expression" -msgstr "" +msgstr "Fin inattendue d'une expression CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" "A symbol name was expected! A reserved keyword can not be used as a field " "name without backquotes." msgstr "" +"Un nom de symbole était attendu ! Un mot clé réservé ne peut pas servir " +"comme nom de colonne sans les apostrophes inverses." #: libraries/sql-parser/src/Components/CreateDefinition.php:241 msgid "A symbol name was expected!" @@ -14731,7 +14739,7 @@ msgstr "Données incorrectes" #: setup/validate.php:30 #, php-format msgid "Wrong data or no validation for %s" -msgstr "" +msgstr "Données erronées ou aucune validation pour %s" #: tbl_create.php:30 tbl_get_field.php:26 #, php-format @@ -15821,7 +15829,7 @@ msgstr "Le mot de passe est trop long !" #: view_create.php:44 msgid "View name can not be empty" -msgstr "" +msgstr "Le nom de la vue ne peut être vide" #: view_create.php:247 msgid "VIEW name" From 0404f09aceadd6df6be069f46336d293a271ada2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 9 Nov 2016 17:42:31 +0100 Subject: [PATCH 22/32] Update SQL parser to 3.4.12 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- .../src/Components/CreateDefinition.php | 2 +- libraries/sql-parser/src/Parser.php | 9 ++++ libraries/sql-parser/src/Statement.php | 43 +++++++++++++++ libraries/sql-parser/src/Utils/Query.php | 54 +++++++++++++++++++ 4 files changed, 107 insertions(+), 1 deletion(-) diff --git a/libraries/sql-parser/src/Components/CreateDefinition.php b/libraries/sql-parser/src/Components/CreateDefinition.php index 3f2df089d8..86bb3157ab 100644 --- a/libraries/sql-parser/src/Components/CreateDefinition.php +++ b/libraries/sql-parser/src/Components/CreateDefinition.php @@ -226,7 +226,7 @@ class CreateDefinition extends Component $parser->error( __('A symbol name was expected! ' . 'A reserved keyword can not be used ' - . 'as a field name without backquotes.' + . 'as a column name without backquotes.' ), $token ); diff --git a/libraries/sql-parser/src/Parser.php b/libraries/sql-parser/src/Parser.php index 0d48a41936..d98e8dc278 100644 --- a/libraries/sql-parser/src/Parser.php +++ b/libraries/sql-parser/src/Parser.php @@ -531,6 +531,9 @@ class Parser $lastStatement->last = $statement->last; $unionType = false; + + // Validate clause order + $statement->validateClauseOrder($this, $list); continue; } @@ -556,9 +559,15 @@ class Parser } $lastTransaction = null; } + + // Validate clause order + $statement->validateClauseOrder($this, $list); continue; } + // Validate clause order + $statement->validateClauseOrder($this, $list); + // Finally, storing the statement. if ($lastTransaction !== null) { $lastTransaction->statements[] = $statement; diff --git a/libraries/sql-parser/src/Statement.php b/libraries/sql-parser/src/Statement.php index c23db67bb5..b4769efb0f 100644 --- a/libraries/sql-parser/src/Statement.php +++ b/libraries/sql-parser/src/Statement.php @@ -422,4 +422,47 @@ abstract class Statement { return $this->build(); } + + /** + * Validates the order of the clauses in parsed statement + * Ideally this should be called after successfully + * completing the parsing of each statement + * + * @param Parser $parser The instance that requests parsing. + * @param TokensList $list The list of tokens to be parsed. + * + * @return boolean + */ + public function validateClauseOrder($parser, $list) + { + $clauses = array_flip(array_keys($this->getClauses())); + + if (empty($clauses) + || count($clauses) == 0 + ) { + return true; + } + + $minIdx = -1; + foreach ($clauses as $clauseType => $index) { + $clauseStartIdx = Utils\Query::getClauseStartOffset( + $this, + $list, + $clauseType + ); + + if ($clauseStartIdx != -1 && $clauseStartIdx < $minIdx) { + $token = $list->tokens[$clauseStartIdx]; + $parser->error( + __('Unexpected ordering of clauses.'), + $token + ); + return false; + } elseif ($clauseStartIdx != -1) { + $minIdx = $clauseStartIdx; + } + } + + return true; + } } diff --git a/libraries/sql-parser/src/Utils/Query.php b/libraries/sql-parser/src/Utils/Query.php index 2e0982a018..4d66a90a5c 100644 --- a/libraries/sql-parser/src/Utils/Query.php +++ b/libraries/sql-parser/src/Utils/Query.php @@ -783,4 +783,58 @@ class Query return array(trim($statement), $query, $delimiter); } + + /** + * Gets a starting offset of a specific clause. + * + * @param Statement $statement The parsed query that has to be modified. + * @param TokensList $list The list of tokens. + * @param string $clause The clause to be returned. + * + * @return int + */ + public static function getClauseStartOffset($statement, $list, $clause) + { + /** + * The count of brackets. + * We keep track of them so we won't insert the clause in a subquery. + * + * @var int $brackets + */ + $brackets = 0; + + /** + * The clauses of this type of statement and their index. + * + * @var array $clauses + */ + $clauses = array_flip(array_keys($statement->getClauses())); + + for ($i = $statement->first; $i <= $statement->last; ++$i) { + $token = $list->tokens[$i]; + + if ($token->type === Token::TYPE_COMMENT) { + continue; + } + + if ($token->type === Token::TYPE_OPERATOR) { + if ($token->value === '(') { + ++$brackets; + } elseif ($token->value === ')') { + --$brackets; + } + } + + if ($brackets == 0) { + if (($token->type === Token::TYPE_KEYWORD) + && (isset($clauses[$token->value])) + && ($clause === $token->value) + ) { + return $i; + } + } + } + + return -1; + } } From 3debbdd09b3b176bfb1686252ffc221de98e1eb4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 9 Nov 2016 18:05:41 +0100 Subject: [PATCH 23/32] Changelog entry for 12689 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 44b3fcc9e0..cb9044f32a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -82,6 +82,7 @@ phpMyAdmin - ChangeLog - issue #12674 Allow for proper MySQL-allowed strings as identifiers - issue #12651 Allow for partial dates on table insert page - issue #12681 Fixed designer with tables using special chars +- issue #12652 Fixed visual query builder for foreign keys with more fields 4.6.4 (2016-08-16) - issue [security] Weaknesses with cookie encryption, see PMASA-2016-29 From 7270a0c79547c9d6800373aa0aa6c4dbb54342d5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 9 Nov 2016 18:07:21 +0100 Subject: [PATCH 24/32] Add missing punctionation MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit See PR #12686 Signed-off-by: Michal Čihař --- libraries/rte/rte_words.lib.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/libraries/rte/rte_words.lib.php b/libraries/rte/rte_words.lib.php index 3205c2e7fb..95fc5a1052 100644 --- a/libraries/rte/rte_words.lib.php +++ b/libraries/rte/rte_words.lib.php @@ -29,17 +29,17 @@ function PMA_RTE_getWord($index) 'export' => __('Export of routine %s'), 'human' => __('routine'), 'no_create' => __( - 'You do not have the necessary privileges to create a routine' + 'You do not have the necessary privileges to create a routine.' ), 'no_edit' => __( 'No routine with name %1$s found in database %2$s. ' - . 'You might be lacking the necessary privileges to edit this routine' + . 'You might be lacking the necessary privileges to edit this routine.' ), 'no_view' => __( 'No routine with name %1$s found in database %2$s. ' - . 'You might be lacking the necessary privileges to view/export this routine' + . 'You might be lacking the necessary privileges to view/export this routine.' ), - 'not_found' => __('No routine with name %1$s found in database %2$s'), + 'not_found' => __('No routine with name %1$s found in database %2$s.'), 'nothing' => __('There are no routines to display.'), 'title' => __('Routines'), ); @@ -51,9 +51,9 @@ function PMA_RTE_getWord($index) 'export' => __('Export of trigger %s'), 'human' => __('trigger'), 'no_create' => __( - 'You do not have the necessary privileges to create a trigger' + 'You do not have the necessary privileges to create a trigger.' ), - 'not_found' => __('No trigger with name %1$s found in database %2$s'), + 'not_found' => __('No trigger with name %1$s found in database %2$s.'), 'nothing' => __('There are no triggers to display.'), 'title' => __('Triggers'), ); @@ -65,9 +65,9 @@ function PMA_RTE_getWord($index) 'export' => __('Export of event %s'), 'human' => __('event'), 'no_create' => __( - 'You do not have the necessary privileges to create an event' + 'You do not have the necessary privileges to create an event.' ), - 'not_found' => __('No event with name %1$s found in database %2$s'), + 'not_found' => __('No event with name %1$s found in database %2$s.'), 'nothing' => __('There are no events to display.'), 'title' => __('Events'), ); From 9b8758512e86b43029afec42683ec1a13052ef00 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Wed, 9 Nov 2016 18:15:24 +0100 Subject: [PATCH 25/32] Changelog entry for #12685 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 cb9044f32a..13f33942bf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -83,6 +83,7 @@ phpMyAdmin - ChangeLog - issue #12651 Allow for partial dates on table insert page - issue #12681 Fixed designer with tables using special chars - issue #12652 Fixed visual query builder for foreign keys with more fields +- issue #12257 Improved search page performance 4.6.4 (2016-08-16) - issue [security] Weaknesses with cookie encryption, see PMASA-2016-29 From ec08844246b19263feecd01b21b2aa61dac73701 Mon Sep 17 00:00:00 2001 From: Deven Bansod Date: Thu, 10 Nov 2016 11:43:19 +0530 Subject: [PATCH 26/32] Use a forcing parameter to get $the_total records for a foreign key column Required at some specific places for ex. browse_foreigners.php (reqd for pagination) This is in continuation of original fix for #12257 (in #12685) Also fixed an error in an old commit 9880f573441fcac53e61ee17eeaf690c1e06ecb0 related to LIMIT clause generation Signed-off-by: Deven Bansod --- browse_foreigners.php | 3 ++- libraries/relation.lib.php | 14 ++++++++++++-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/browse_foreigners.php b/browse_foreigners.php index 67dffc48c5..68a50a16bb 100644 --- a/browse_foreigners.php +++ b/browse_foreigners.php @@ -47,7 +47,8 @@ $foreignData = PMA_getForeignData( isset($_REQUEST['foreign_filter']) ? $_REQUEST['foreign_filter'] : '', - isset($foreign_limit) ? $foreign_limit : null + isset($foreign_limit) ? $foreign_limit : null, + true // for getting value in $foreignData['the_total'] ); // HTML output diff --git a/libraries/relation.lib.php b/libraries/relation.lib.php index f5be686b07..cfe2c23dd8 100644 --- a/libraries/relation.lib.php +++ b/libraries/relation.lib.php @@ -1330,13 +1330,17 @@ function PMA_foreignDropdown($disp_row, $foreign_field, $foreign_display, $data, * @param bool $override_total whether to override the total * @param string $foreign_filter a possible filter * @param string $foreign_limit a possible LIMIT clause + * @param bool $get_total optional, whether to get total num of rows + * in $foreignData['the_total;] + * (has an effect of performance) * * @return array data about the foreign keys * * @access public */ function PMA_getForeignData( - $foreigners, $field, $override_total, $foreign_filter, $foreign_limit + $foreigners, $field, $override_total, + $foreign_filter, $foreign_limit, $get_total=false ) { // we always show the foreign field in the drop-down; if a display // field is defined, we show it besides the foreign field @@ -1401,7 +1405,7 @@ function PMA_getForeignData( . PMA\libraries\Util::backquote($foreign_table) . '.' . PMA\libraries\Util::backquote($foreign_display); - $f_query_limit = ! empty($foreign_limit) ? (' LIMIT ' . $foreign_limit) : ''; + $f_query_limit = ! empty($foreign_limit) ? ($foreign_limit) : ''; if (!empty($foreign_filter)) { $the_total = $GLOBALS['dbi']->fetchValue( @@ -1439,6 +1443,11 @@ function PMA_getForeignData( } } while (false); + if ($get_total) { + $the_total = $GLOBALS['dbi']->getTable($foreign_db, $foreign_table) + ->countRecords(true); + } + $foreignData = array(); $foreignData['foreign_link'] = $foreign_link; $foreignData['the_total'] = isset($the_total) ? $the_total : null; @@ -1447,6 +1456,7 @@ function PMA_getForeignData( ); $foreignData['disp_row'] = isset($disp_row) ? $disp_row : null; $foreignData['foreign_field'] = isset($foreign_field) ? $foreign_field : null; + return $foreignData; } // end of 'PMA_getForeignData()' function From 683c2dc291d2bcadf33423fccc7a097f83ba5f88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 10 Nov 2016 09:40:14 +0100 Subject: [PATCH 27/32] 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 | 466 ++++++++++++++++++++-------------------- po/ar.po | 469 ++++++++++++++++++++-------------------- po/az.po | 483 ++++++++++++++++++++++-------------------- po/be.po | 466 ++++++++++++++++++++-------------------- po/be@latin.po | 466 ++++++++++++++++++++-------------------- po/bg.po | 481 +++++++++++++++++++++-------------------- po/bn.po | 481 +++++++++++++++++++++-------------------- po/br.po | 479 +++++++++++++++++++++-------------------- po/brx.po | 464 ++++++++++++++++++++-------------------- po/bs.po | 466 ++++++++++++++++++++-------------------- po/ca.po | 481 +++++++++++++++++++++-------------------- po/ckb.po | 481 +++++++++++++++++++++-------------------- po/cs.po | 481 +++++++++++++++++++++-------------------- po/cy.po | 466 ++++++++++++++++++++-------------------- po/da.po | 526 ++++++++++++++++++++++++--------------------- po/de.po | 481 +++++++++++++++++++++-------------------- po/el.po | 505 ++++++++++++++++++++++++-------------------- po/en_GB.po | 481 +++++++++++++++++++++-------------------- po/eo.po | 464 ++++++++++++++++++++-------------------- po/es.po | 481 +++++++++++++++++++++-------------------- po/et.po | 481 +++++++++++++++++++++-------------------- po/eu.po | 466 ++++++++++++++++++++-------------------- po/fa.po | 466 ++++++++++++++++++++-------------------- po/fi.po | 466 ++++++++++++++++++++-------------------- po/fr.po | 509 ++++++++++++++++++++++++-------------------- po/fy.po | 466 ++++++++++++++++++++-------------------- po/gl.po | 481 +++++++++++++++++++++-------------------- po/gu.po | 464 ++++++++++++++++++++-------------------- po/he.po | 466 ++++++++++++++++++++-------------------- po/hi.po | 466 ++++++++++++++++++++-------------------- po/hr.po | 466 ++++++++++++++++++++-------------------- po/hu.po | 481 +++++++++++++++++++++-------------------- po/hy.po | 487 ++++++++++++++++++++++-------------------- po/ia.po | 481 +++++++++++++++++++++-------------------- po/id.po | 508 +++++++++++++++++++++++--------------------- po/it.po | 505 ++++++++++++++++++++++++-------------------- po/ja.po | 481 +++++++++++++++++++++-------------------- po/ka.po | 466 ++++++++++++++++++++-------------------- po/kk.po | 481 +++++++++++++++++++++-------------------- po/km.po | 479 +++++++++++++++++++++-------------------- po/kn.po | 479 +++++++++++++++++++++-------------------- po/ko.po | 528 +++++++++++++++++++++++++--------------------- po/ksh.po | 464 ++++++++++++++++++++-------------------- po/ky.po | 479 +++++++++++++++++++++-------------------- po/li.po | 464 ++++++++++++++++++++-------------------- po/lt.po | 489 ++++++++++++++++++++++-------------------- po/lv.po | 466 ++++++++++++++++++++-------------------- po/mk.po | 466 ++++++++++++++++++++-------------------- po/ml.po | 479 +++++++++++++++++++++-------------------- po/mn.po | 466 ++++++++++++++++++++-------------------- po/ms.po | 466 ++++++++++++++++++++-------------------- po/nb.po | 466 ++++++++++++++++++++-------------------- po/ne.po | 479 +++++++++++++++++++++-------------------- po/nl.po | 505 ++++++++++++++++++++++++-------------------- po/pa.po | 464 ++++++++++++++++++++-------------------- po/phpmyadmin.pot | 464 ++++++++++++++++++++-------------------- po/pl.po | 481 +++++++++++++++++++++-------------------- po/pt.po | 466 ++++++++++++++++++++-------------------- po/pt_BR.po | 491 ++++++++++++++++++++++-------------------- po/ro.po | 471 +++++++++++++++++++++-------------------- po/ru.po | 481 +++++++++++++++++++++-------------------- po/si.po | 481 +++++++++++++++++++++-------------------- po/sk.po | 481 +++++++++++++++++++++-------------------- po/sl.po | 495 +++++++++++++++++++++++-------------------- po/sq.po | 481 +++++++++++++++++++++-------------------- po/sr.po | 466 ++++++++++++++++++++-------------------- po/sr@latin.po | 481 +++++++++++++++++++++-------------------- po/sv.po | 481 +++++++++++++++++++++-------------------- po/ta.po | 481 +++++++++++++++++++++-------------------- po/te.po | 468 ++++++++++++++++++++-------------------- po/th.po | 471 +++++++++++++++++++++-------------------- po/tk.po | 464 ++++++++++++++++++++-------------------- po/tr.po | 505 ++++++++++++++++++++++++-------------------- po/tt.po | 466 ++++++++++++++++++++-------------------- po/ug.po | 466 ++++++++++++++++++++-------------------- po/uk.po | 481 +++++++++++++++++++++-------------------- po/ur.po | 466 ++++++++++++++++++++-------------------- po/uz.po | 466 ++++++++++++++++++++-------------------- po/uz@latin.po | 466 ++++++++++++++++++++-------------------- po/vi.po | 481 +++++++++++++++++++++-------------------- po/vls.po | 464 ++++++++++++++++++++-------------------- po/zh_CN.po | 481 +++++++++++++++++++++-------------------- po/zh_TW.po | 481 +++++++++++++++++++++-------------------- 83 files changed, 20871 insertions(+), 18750 deletions(-) diff --git a/po/af.po b/po/af.po index fc3a08915c..7a8fc4695b 100644 --- a/po/af.po +++ b/po/af.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:30+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Afrikaans - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolom name" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Wys alles" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Lyne beeindig deur" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Export" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Kies Tabelle" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Geen databasisse" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolom name" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Verander wagwoord" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 #, fuzzy msgid "Generate" msgstr "Voortgebring deur" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Ma" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Wys alles" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indekse" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Wys ruitgebied" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indekse" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indekse" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2596,121 +2603,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Geen databasisse" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Bediener weergawe" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Bediener Keuse" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Bediener Keuse" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Algemene verwantskap funksies" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Wys tabelle" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoreer" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Wys hierdie navraag weer hier" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Wil jy regtig " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabel kommentaar" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL-stelling" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2726,37 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy msgid "Copy tables to" msgstr "Geen databasisse" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Vervang tabel data met leer (file)" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2757,95 +2764,95 @@ msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy msgid "Today" msgstr "totaal" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Biner" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mei" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2853,78 +2860,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Des" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "So" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Ma" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Di" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Fr" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2932,199 +2939,199 @@ msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Wo" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Wo" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Geen" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in gebruik" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekords" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Voeg 'n nuwe veld by" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Kies asb. 'n databasis" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3220,8 +3227,8 @@ msgstr "in navraag" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Databasis" @@ -4128,7 +4135,7 @@ msgstr "Indeks %s is verwyder." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4184,8 +4191,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4572,50 +4579,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Wys tabelle" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Soek in databasis" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Geen databasisse" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Binne tabel(le):" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Bediener weergawe" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %s is vernoem na %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4623,19 +4630,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Die naam van die primere sleutel moet PRIMARY wees!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kannie die indeks hernoem na PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Geen indeks dele gedefinieer!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11195,60 +11202,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Veranderinge is gestoor" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Algemene verwantskap funksies" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Veranderinge is gestoor" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Leer kon nie gelees word nie" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Algemene verwantskap funksies" @@ -11379,31 +11386,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "geen Beskrywing" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12090,27 +12097,27 @@ msgstr "Voeg 'n nuwe veld by" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Jy het nie genoeg regte om nou hier te wees nie!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Geen tabelle in databasis gevind nie." #: libraries/rte/rte_words.lib.php:43 @@ -12135,13 +12142,13 @@ msgstr "Voeg 'n nuwe gebruiker by" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Jy het nie genoeg regte om nou hier te wees nie!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Geen tabelle in databasis gevind nie." #: libraries/rte/rte_words.lib.php:57 @@ -12165,13 +12172,13 @@ msgstr "" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Jy het nie genoeg regte om nou hier te wees nie!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Geen tabelle in databasis gevind nie." #: libraries/rte/rte_words.lib.php:71 @@ -13876,7 +13883,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13988,7 +13995,7 @@ msgstr "By Begin van Tabel" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14009,6 +14016,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "By Begin van Tabel" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15631,39 +15644,46 @@ msgstr "Aksie" msgid "Constraint properties" msgstr "Kolom name" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add a linestring" msgid "+ Add constraint" msgstr "Voeg 'n lynstring by" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy msgid "Internal relations" msgstr "Algemene verwantskap funksies" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy msgid "Internal relation" msgstr "Algemene verwantskap funksies" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15675,13 +15695,13 @@ msgstr "Kies 'n Veld om te vertoon" msgid "Foreign key constraint %s has been dropped" msgstr "Veld %s is verwyder" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Kolom name" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "Voeg 'n nuwe veld by" diff --git a/po/ar.po b/po/ar.po index 06893391c1..e0b3a8b25b 100644 --- a/po/ar.po +++ b/po/ar.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-07 11:45+0000\n" "Last-Translator: Ihab Mardoud \n" "Language-Team: Arabic - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "إضغط لوضع علامة / إزالة علامة" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "أنقر مرتين لنسخ اسم العمود" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "عرض الكل" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "منحنى" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ألغاء" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ألغي" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "نجاح" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "إفتراضيات الإستيراد" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "إسقاط الملفات هنا" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "اختر الجداول" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "طباعة" -#: js/messages.php:609 +#: js/messages.php:615 #, 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:614 +#: js/messages.php:620 #, 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:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ذهاب للرابط" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "أنسخ اسم العمود" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "توليد كلمة مرور" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "توليد" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "أكثر" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "عرض الكل" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "إخفاء الفهارس" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "عرض الشعار في الإطار الأيسر" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "تخصيص الإطار الرئيسي" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2567,120 +2574,120 @@ msgstr "" "هو %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", آخر إصدار مستقر:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "محدثة" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "إنشاء عرض" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير الإعدادات" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Import files" msgid "Show report details" msgstr "استورد الملفات" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "تجاهل" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "أعرض هذا الاستعلام هنا مرة أخرى" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "هل تريد فعلاً تنفيذ \"%s\"؟" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Issued queries" msgid "%s queries executed %s times in %s seconds." msgstr "إستعلامات صادرة" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "تعليقات الجدول" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "إخفاء نتائج البحث" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2689,383 +2696,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "نسخ قاعدة البيانات إلى" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "إضافة حقل جديد" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "استبدال بادئة الجدول" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "نسخ الجدول مع البادئة" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "سابق" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "التالي" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "اليوم" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "يناير" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "فبراير" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "مارس" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "أبريل" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "مايو" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "يونيو" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "يوليو" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "أغسطس" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "سبتمبر" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "أكتوبر" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "نوفمبر" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "ديسمبر" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "يناير" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "فبراير" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "أبريل" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "مايو" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "يونيو" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "يوليو" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "أغسطس" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "سبتمبر" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "أكتوبر" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "نوفمبر" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "ديسمبر" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "الأحد" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "الإثنين" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "الثلاثاء" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "الأربعاء" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "الخميس" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "الجمعة" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "السبت" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "الأحد" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "الإثنين" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "الثلاثاء" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "الأربعاء" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "الخميس" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "الجمعة" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "السبت" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "الأحد" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "الإثنين" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "الثلاثاء" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "الأربعاء" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "الخميس" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "الجمعة" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "السبت" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "الأسبوع" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "التقويم-الشهر-السنة" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "لا شيء" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "الساعة" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "الدقيقة" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "الثانية" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "استخدم حقل نص" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "رقم منفذ غير صحيح" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3164,8 +3171,8 @@ msgstr "في الاستعلام" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "قاعدة البيانات" @@ -4085,7 +4092,7 @@ msgstr "تم حذف الفهرس %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4141,8 +4148,8 @@ msgstr "عرض" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "الجدول" @@ -4550,53 +4557,53 @@ msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ." msgid "Unknown table status:" msgstr "حالة الجدول غير معروفة: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات المصدر `%s`!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "لم يعثر على قاعدة البيانات الهدف `%s`!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "قاعدة البيانات غير صالحة" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "اسم الجدول غير صالح" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "تمّت تسمية الجدول %1$s إلى %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "لا يمكن حفظ تفضيلات جدول UI" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4604,19 +4611,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "اسم المفتاح الأساسي يجب أن يكون أساسيا \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "لايمكن تغيير اسم الفهرس إلى الأساسي!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "أجزاء الفهرسة غير معرفة!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11453,61 +11460,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "تمت التعديلات" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "العلاقات الداخلية" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "تمت التعديلات" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "لا يمكن قراءة الملف" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -11642,18 +11649,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "بدون وصف" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11663,13 +11670,13 @@ msgid "" "configuration storage there." msgstr "تعقب التغيرات الحاصلة على قاعدة البيانات." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -12420,26 +12427,27 @@ msgstr "إضافة حقل جديد" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "لا يوجد جدول بالإسم %1$s في قاعدة البيانات %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12466,13 +12474,13 @@ msgstr "أضف مستخدم جديد" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No routine with name %1$s found in database %2$s" -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "لا يوجد جدول بالإسم %1$s في قاعدة البيانات %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12499,13 +12507,13 @@ msgstr "حدث" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "ليس لديك الحقوق الكافية بأن تكون هنا الآن!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "لا توجد جداول متوفره في قاعدة البيانات هذه!." #: libraries/rte/rte_words.lib.php:71 @@ -14283,7 +14291,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14401,7 +14409,7 @@ msgstr "في بداية الجدول" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14424,6 +14432,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "في بداية الجدول" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16104,37 +16118,44 @@ msgstr "العملية" msgid "Constraint properties" msgstr "القيود للجدول" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "قيود المفتاح الغريب" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "أضف قيود" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "العلاقات الداخلية" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "العلاقات الداخلية" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16146,13 +16167,13 @@ msgstr "اختر الحقل لإظهاره" msgid "Foreign key constraint %s has been dropped" msgstr "قيود المفتاح الغريب" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "القيود للجدول" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/az.po b/po/az.po index df24db7edd..291d47eec5 100644 --- a/po/az.po +++ b/po/az.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-08 18:50+0000\n" "Last-Translator: Sevdimali İsa \n" -"Language-Team: Azerbaijani " -"\n" +"Language-Team: Azerbaijani \n" "Language: az\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,11 +63,12 @@ msgstr "Cədvəl şərhləri:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -516,7 +517,7 @@ msgstr "" msgid "Succeeded" msgstr "Uğurlu" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Uğursuz oldu" @@ -613,7 +614,7 @@ msgstr "\"DROP DATABASE\" ifadeleri söndürülmüşdür (disabled)." msgid "Could not load the progress of the import." msgstr "İmport prosesinin iləriləmə vəziyyəti yüklənə bilmədi." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -638,7 +639,7 @@ msgstr "" msgid "General settings" msgstr "Ümumi ayarlar" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1023,7 +1024,7 @@ msgstr "Ən az bir sütun əlavə etməlisiniz." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "SQL önizləmə" @@ -1327,8 +1328,8 @@ msgid "" "depending on your system." msgstr "" "slow_query_log deaktiv edildi, ancaq server sadəcə %d saniyədən daha çox " -"çəkən sorğuları loglayır. Bu long_query_time-ın, sisteminizə bağlı olaraq 0-" -"2 saniyəyə ayarlanmasını tövsiyyə edirik." +"çəkən sorğuları loglayır. Bu long_query_time-ın, sisteminizə bağlı olaraq " +"0-2 saniyəyə ayarlanmasını tövsiyyə edirik." #: js/messages.php:231 #, php-format @@ -1471,7 +1472,7 @@ msgstr "Eksportu açıqla" msgid "Status" msgstr "Status" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1937,7 +1938,7 @@ 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:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Hazırdır" @@ -2016,7 +2017,7 @@ msgstr "Heç bir baza seçilmemişdir." #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Yaddaşa ver" @@ -2094,7 +2095,7 @@ msgstr "İki fərqli sütun seçin" msgid "Data point content" msgstr "Verilən nöqtə məzmunu" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2149,105 +2150,111 @@ msgstr "" #: js/messages.php:528 msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" + +#: js/messages.php:534 +msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:536 +#: js/messages.php:542 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:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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:542 +#: js/messages.php:548 msgid "Page name" msgstr "Səhifə adı" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 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:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 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:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Səhifəni sil" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıqsız" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Zəhmət olmasa davam etmək üçün bir səhifə seçin" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Zəhmət olmasa keçərli bir səhifə adı daxil edin" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Səhifə uğurla silindi" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Əlaqəli sxemləri eksport et" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Modifikasiyalar yaddaşa verildi" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu üçün seçim əlavə edin." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d obyekt yaradıldı." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Redaktəni ləğv etmək üçün Esc düyməsinə basın." -#: js/messages.php:564 +#: js/messages.php:570 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?" @@ -2255,157 +2262,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Yenidən düzənləmək üçün sürükləyin." -#: js/messages.php:568 +#: js/messages.php:574 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:570 +#: js/messages.php:576 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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamaq üçün iki dəfə klikləyin." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Hamısını göstər" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Orjinal sətir" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "ləğv et" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Dayandırılmış Əlaqələr" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "İmport statusu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Əvvəlcə Verilənlər Bazasını seçin" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Bağlantıya get:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Parol yarat" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Yarat" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Daha çox" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Paneli Göstər" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Paneli Gizlət" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Gizli naviqasiya ağac bəndlərini göstər." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Əsas panel ilə əlaqəni kəs" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2415,56 +2422,56 @@ msgstr "" "versiya %s, %s tarixində yayımlanıb." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", son stabil versiya:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktual" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Görünüş yarat" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Xəta hesabatları göndər" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Xəta Hesabatı Göndər" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Hesabat tənzimləmələrini dəyişdir" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Hesabat Təfsilatlarını Göstər" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2474,64 +2481,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Serverdə bəzi xətalar aşkar edildi!" -#: js/messages.php:677 +#: js/messages.php:683 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:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Heç birin diqqətə alma" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Bu sorğu təkrar icra olunsunmu?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Bu əlfəcini silmək istədiyinizə əminsinizmi?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Cədvəl haqqında izahat" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Axtarış nəticələrini gizlət" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2540,385 +2547,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Verilənlər Bazasını buraya kopyala" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Cədvəl prefiksi əlavə et:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Cədvəl prefiksini dəyiş" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Cədvəli prefiks ilə birgə kopyala" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Əvvəlki" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Sonrakı" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Bugün" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Yanvar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Fevral" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mart" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Aprel" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "May" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "İyun" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "İyul" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Avqust" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Sentyabr" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktyabr" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Noyabr" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dekabr" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Yan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "İyun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "İyul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Avq" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sent" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Noy" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dek" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Bazar" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Bazar Ertəsi" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Çərşənbə axşamı" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Çərşənbə" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Cümə axşamı" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Cümə" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Şənbə" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Baz" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Baz Ert" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Çerş Axş" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Çerş" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Cüme Axş" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Cüme" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Şen" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "B" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Baz Ert" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Çərş Axş" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ç" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "CA" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Ş" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "təqvim-ay-il" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Heç biri" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Saat" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Dəqiqə" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Saniyə" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Mətn sahəsi istifadə et" -#: js/messages.php:889 +#: js/messages.php:895 #, 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:890 +#: js/messages.php:896 #, 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:891 +#: js/messages.php:897 #, 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:894 +#: js/messages.php:900 #, 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:896 +#: js/messages.php:902 #, 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:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, 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:904 +#: js/messages.php:910 #, 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:908 +#: js/messages.php:914 #, 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:913 +#: js/messages.php:919 #, 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:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, 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:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3015,8 +3022,8 @@ msgstr "Sorğunu təkrarla" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Verilənlər Bazası" @@ -3843,7 +3850,7 @@ msgstr "%s indeksi ləğv edildi." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3899,8 +3906,8 @@ msgstr "Görünüş" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Cədvəl" @@ -4263,47 +4270,47 @@ msgstr "Bu MySQL server %s depolama motorunu desteklememektedir." msgid "Unknown table status:" msgstr "Bilinməyən cədvəl statusu:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Qaynaq Verilənlər Bazası `%s` tapılmadı!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Hədəf Verilənlər Bazası `%s` tapılmadı!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Etibarsız Verilənlər Bazası:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Etibarsız cədvəl adı:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" "%1$s Cədvəl adını %2$s cədvəl adına dəyişdirmə yerinə yetirilə bilmədi!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s cədvəli %2$s olaraq yenidən adlandırılmışdır." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4311,20 +4318,20 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birinci dərəcəli açarın adı \"PRIMARY\" olmalıdır!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" "İndeksi Birinci dərəcəli (PRIMARY) olaraq yenidən adlandıra bilməzsiniz!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "İndeks qisimleri te'yin edilmedi!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10794,55 +10801,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Modifications have been saved" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fayl oxuna bilmir" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Daxili əlaqə əlavə edildi." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Xəta: Daxili əlaqə əlavə edilmədi!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Modifications have been saved" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fayl oxuna bilmir" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Xəta: Daxili əlaqə ləğv edilə bilmədi!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Daxili əlaqə ləğv edildi." @@ -10968,31 +10975,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Haqqında məlumat (description) mövcud deyildir" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11653,26 +11660,27 @@ msgstr "rutin" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Burada olma haqqınız yoxdur!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "%1$s bazasında %2$s adında rutin tapılmadı" #: libraries/rte/rte_words.lib.php:43 @@ -11695,12 +11703,13 @@ msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Burada olma haqqınız yoxdur!" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "%1$s adlnda trigger %2$s Bazasında tapılmadı" #: libraries/rte/rte_words.lib.php:57 @@ -11723,12 +11732,13 @@ msgstr "hadisə" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Burada olma haqqınız yoxdur!" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "%1$s bu adda %2$s bazasında heç bir hadisə tapılmadı" #: libraries/rte/rte_words.lib.php:71 @@ -13444,7 +13454,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13566,7 +13576,7 @@ msgstr "Cədvəlin başına" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13589,6 +13599,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Cədvəlin başına" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15161,31 +15177,38 @@ msgstr "Fəaliyyətlər" msgid "Constraint properties" msgstr "Sütun adları" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add a linestring" msgid "+ Add constraint" msgstr "Sətir sırası əlavə et" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Daxili əlaqələr" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Daxili əlaqə" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15193,7 +15216,7 @@ msgstr "" "FOREIGN KEY bağlantısının yerini tutan bir bağlantı varkən daxili bağlantı " "yaratmaq mümkün deyildir." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Göstərmək üçün sütun seçin:" @@ -15203,13 +15226,13 @@ msgstr "Göstərmək üçün sütun seçin:" msgid "Foreign key constraint %s has been dropped" msgstr "%s sahesi leğv edildi" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Sütun adları" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/be.po b/po/be.po index 74b5b2bfb2..5f7512f4cb 100644 --- a/po/be.po +++ b/po/be.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-05-15 14:28+0200\n" "Last-Translator: Viktar Palstsiuk \n" "Language-Team: Belarusian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Назвы калёнак" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Паказаць усе" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Першапачатковая пазыцыя" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Скасаваць" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Спынена" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Імпартаваць файлы" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Парог файла логу" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Выберыце табліцу(ы)" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Назвы калёнак" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Згенэраваць пароль" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Згенэраваць" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пан" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Паказаць усе" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Дадаць новае поле" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Паказаць сетку" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Налады экспарту базы дадзеных" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2687,123 +2694,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy msgid ", latest stable version:" msgstr "Стварыць сувязь" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Базы дадзеных адсутнічаюць" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Стварыць сувязь" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "ID сэрвэра" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "ID сэрвэра" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Магчымасьці асноўных сувязяў" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Паказаць адкрытыя табліцы" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ігнараваць" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Паказаць гэты запыт зноў" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ці сапраўды вы жадаеце " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-запыт" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Камэнтар да табліцы" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL-запыт" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2812,38 +2819,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Капіяваць базу дадзеных у" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Дадаць новае поле" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замяніць дадзеныя табліцы дадзенымі з файла" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Папярэдняя старонка" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2851,96 +2858,96 @@ msgid "Next" msgstr "Наступная старонка" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Агулам" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Двайковы" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Сак" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Кра" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Тра" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Чэр" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Ліп" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Жні" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Кас" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Сту" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Сак" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Кра" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2948,78 +2955,78 @@ msgid "May" msgstr "Тра" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Чэр" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Ліп" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Жні" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Кас" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Ліс" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Сьн" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ндз" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пан" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Аўт" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пят" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3027,86 +3034,86 @@ msgid "Sun" msgstr "Ндз" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Пан" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Аўт" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Цач" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Пят" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ндз" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пан" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Аўт" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сер" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Цач" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пят" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3115,137 +3122,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Няма" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "выкарыстоўваецца" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у сэкунду" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Выкарыстоўваць тэкставае поле" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d не зьяўляецца карэктным нумарам радка." -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3342,8 +3349,8 @@ msgstr "па запыту" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "База дадзеных" @@ -4283,7 +4290,7 @@ msgstr "Індэкс %s быў выдалены." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4341,8 +4348,8 @@ msgstr "Выгляд" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Табліца" @@ -4738,55 +4745,55 @@ msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну msgid "Unknown table status:" msgstr "Паказаць стан залежных сэрвэраў" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пошук у базе дадзеных" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Тэма %s ня знойдзеная!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Няправільная база дадзеных" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Некарэктнае імя табліцы" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Памылка перайменаваньня табліцы %1$s у %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табліца %s была перайменаваная ў %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4794,19 +4801,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Імя першаснага ключа мусіць быць PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Немагчыма перайменаваць індэкс у PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Часткі індэксу ня вызначаныя!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Памылка стварэньня зьнешняга ключа на %1$s (праверце тыпы калёнак)" @@ -11743,63 +11750,63 @@ msgstr "Фарматуе тэкст як SQL-запыт з падсьвечан msgid "Formats text as XML with syntax highlighting." msgstr "Фарматуе тэкст як SQL-запыт з падсьвечаным сынтаксісам." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Памылка: сувязь ужо існуе." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Сувязь FOREIGN KEY была дададзеная" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Унутраная сувязь дададзеная" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Сувязь FOREIGN KEY была дададзеная" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Памылка: сувязь не дададзеная." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11934,31 +11941,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "няма апісаньня" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12692,27 +12699,27 @@ msgstr "Працэдуры" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "У базе дадзеных табліц ня выяўлена." #: libraries/rte/rte_words.lib.php:43 @@ -12740,13 +12747,13 @@ msgstr "Трыгеры" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "У базе дадзеных табліц ня выяўлена." #: libraries/rte/rte_words.lib.php:57 @@ -12773,13 +12780,13 @@ msgstr "Падзея" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Вы ня маеце дастатковых прывілеяў быць у гэтым месцы ў гэты час!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "У базе дадзеных табліц ня выяўлена." #: libraries/rte/rte_words.lib.php:71 @@ -14695,7 +14702,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14813,7 +14820,7 @@ msgstr "У пачатку табліцы" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14834,6 +14841,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "У пачатку табліцы" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16533,33 +16546,40 @@ msgstr "Дзеяньні" msgid "Constraint properties" msgstr "Абмежаваньні для табліцы" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Дадаць абмежаваньні" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутраныя сувязі" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16567,7 +16587,7 @@ msgstr "" "Унутраная сувязь не зьяўляецца абавязковай, калі існуе адпаведная сувязь " "FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16579,13 +16599,13 @@ msgstr "Выберыце поле для адлюстраваньня" msgid "Foreign key constraint %s has been dropped" msgstr "Адключыць праверку зьнешніх ключоў" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Абмежаваньні для табліцы" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/be@latin.po b/po/be@latin.po index 3c3d524d92..5a867bfec7 100644 --- a/po/be@latin.po +++ b/po/be@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Belarusian (latin) - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Pakazać usie" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pieršapačatkovaja pazycyja" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Skasavać" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Spyniena" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Impartavać fajły" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Paroh fajła łogu" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Vybierycie tablicu(y)" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Niama tablic" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazvy kalonak" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Zgieneravać parol" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Zgieneravać" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pan" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Pakazać usie" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dadać novaje pole" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Pakazać sietku" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2721,124 +2728,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "Bazy dadzienych adsutničajuć" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Stvaryć" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Mahčymaści asnoŭnych suviaziaŭ" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Pakazać adkrytyja tablicy" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignaravać" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Pakazać hety zapyt znoŭ" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Kamentar da tablicy" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "pa zapytu" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2847,38 +2854,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kapijavać bazu dadzienych u" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dadać novaje pole" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamianić dadzienyja tablicy dadzienymi z fajła" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Papiaredniaja staronka" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2886,96 +2893,96 @@ msgid "Next" msgstr "Nastupnaja staronka" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ahułam" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Dvajkovy" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Sak" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Kra" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Tra" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Čer" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Lip" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Žni" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Kas" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Sak" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Kra" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2983,78 +2990,78 @@ msgid "May" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Čer" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Žni" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Vier" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Śn" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ndz" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pan" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Aŭt" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Piat" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3062,86 +3069,86 @@ msgid "Sun" msgstr "Ndz" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pan" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Aŭt" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Sier" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Cač" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Piat" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ndz" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pan" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Aŭt" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sier" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Cač" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Piat" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3150,137 +3157,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nijakaja" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "vykarystoŭvajecca" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundu" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Vykarystoŭvać tekstavaje pole" -#: js/messages.php:889 +#: js/messages.php:895 #, 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:890 +#: js/messages.php:896 #, 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:891 +#: js/messages.php:897 #, 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:894 +#: js/messages.php:900 #, 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:896 +#: js/messages.php:902 #, 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:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d nie źjaŭlajecca karektnym numaram radka." -#: js/messages.php:904 +#: js/messages.php:910 #, 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:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, 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:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, 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:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3377,8 +3384,8 @@ msgstr "pa zapytu" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Baza dadzienych" @@ -4324,7 +4331,7 @@ msgstr "Indeks %s byŭ vydaleny." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4382,8 +4389,8 @@ msgstr "Vyhlad" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tablica" @@ -4785,55 +4792,55 @@ msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s." msgid "Unknown table status:" msgstr "Pakazać stan zaležnych serveraŭ" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nia znojdzienaja!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Niapravilnaja baza dadzienych" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Niekarektnaje imia tablicy" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s była pierajmienavanaja ŭ %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4841,19 +4848,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Imia pieršasnaha kluča musić być PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Niemahčyma pierajmienavać indeks u PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Častki indeksu nia vyznačanyja!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Pamyłka stvareńnia źniešniaha kluča na %1$s (praviercie typy kalonak)" @@ -11811,63 +11818,63 @@ msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam." msgid "Formats text as XML with syntax highlighting." msgstr "Farmatuje tekst jak SQL-zapyt z padśviečanym syntaksisam." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Pamyłka: suviaź užo isnuje." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Unutranaja suviaź dadadzienaja" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Suviaź FOREIGN KEY była dadadzienaja" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Pamyłka: suviaź nie dadadzienaja." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12004,31 +12011,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "niama apisańnia" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12762,27 +12769,27 @@ msgstr "Pracedury" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "U bazie dadzienych tablic nia vyjaŭlena." #: libraries/rte/rte_words.lib.php:43 @@ -12809,13 +12816,13 @@ msgstr "Tryhiery" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "U bazie dadzienych tablic nia vyjaŭlena." #: libraries/rte/rte_words.lib.php:57 @@ -12843,13 +12850,13 @@ msgstr "Padzieja" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Vy nia majecie dastatkovych pryvilejaŭ być u hetym miescy ŭ hety čas!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "U bazie dadzienych tablic nia vyjaŭlena." #: libraries/rte/rte_words.lib.php:71 @@ -14771,7 +14778,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14889,7 +14896,7 @@ msgstr "U pačatku tablicy" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14910,6 +14917,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "U pačatku tablicy" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16601,33 +16614,40 @@ msgstr "Dziejańni" msgid "Constraint properties" msgstr "Abmiežavańni dla tablicy" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dadać abmiežavańni" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Unutranyja suviazi" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16635,7 +16655,7 @@ msgstr "" "Unutranaja suviaź nie źjaŭlajecca abaviazkovaj, kali isnuje adpaviednaja " "suviaź FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16647,13 +16667,13 @@ msgstr "Vybierycie pole dla adlustravańnia" msgid "Foreign key constraint %s has been dropped" msgstr "Adklučyć pravierku źniešnich klučoŭ" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Abmiežavańni dla tablicy" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/bg.po b/po/bg.po index 62dc49390a..70b7f41e1b 100644 --- a/po/bg.po +++ b/po/bg.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-05-23 19:20+0000\n" "Last-Translator: Yordan Nedelchev \n" "Language-Team: Bulgarian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2301,26 +2308,26 @@ msgstr "" "ASC/DESC.
- Control+кликване за премахване на колоната от ORDER BY " "клаузата" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Щракване за маркиране/отмаркиране." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Щракнете двукратно за копиране името на колона." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Щракнете стрелката,
за да изберете колони." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Показване на всички" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2329,11 +2336,11 @@ msgstr "" "редакция, отметката, връзките редактиране, копиране и изтриване може да не " "работят след запазване." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "Моля въведете валиден шеснадесетичен низ. Валидни символи са 0-9, A-F." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2341,107 +2348,107 @@ msgstr "" "Наистина ли искате да видите всички редове? За една голяма таблица, това " "може да блокира браузъра." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Първоначална дължина" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Отмяна" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекъснати" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Успех" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Състояние на импорта" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Пуснете файловете тук" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Първо избетере база данни" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печат" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете два пъти " "директно върху тях." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Можете също да редактирате повече стойности
като щракнете директно върху " "тях." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Към връзка:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Копиране името на колоната." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Кликване с десния бутон върху името на колоната, за да го копирате в " "системния буфер." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Генериране на парола" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Генериране" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Още" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Показване на панела" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Скриване на панела" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Показване на скритото навигационно дърво." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Свързване с главния панел" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Премахване от главния панел" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Исканата страница не беше намерена в хронологията, може би е с изтекла " "валидност." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2451,27 +2458,27 @@ msgstr "" "версия е %s, излязла на %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", последната стабилна версия:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "актуално" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Създаване на изглед" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Изпрати доклад за грешка" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Представи доклад за грешка" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2479,21 +2486,21 @@ msgstr "" "Възникнала е грешка фатална JavaScript. Бихте ли искали да изпратите доклад " "за грешка?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Промяна на настройки за доклади" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Показване детайли за доклада" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Вашият износ е непълна, поради нисък изпълнение срок на ниво PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2503,58 +2510,58 @@ msgstr "" "някои от полетата могат да бъдат пренебрегнати, поради max_input_vars " "конфигурацията на PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Засечени са някой грешки на сървъра!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Моля погледнете в края на този прозорец." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Игнориране на всички" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Според настройките си, те се подава в момента, моля, бъдете търпеливи." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Изпълняване на заявката отново?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Наистина ли искате да изтриете отметката: \"%s\"?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Възникнаха грешки при вземане на информация за SQL дебъг." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s изпълнени заявки %s пъти %s секунди." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Покажи доводи" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Скриване доводи" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Използвано време:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2577,347 @@ msgstr "" "подобен проблем и често причинен от „Браузване в личне режим“ (Private Mode " "Browsing)." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Копиране на таблици в" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Добавяне на представка на таблица" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Замяна на таблица с представка" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копиране на таблицата с представка" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Преден" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Следващ" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Днес" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "януари" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "февруари" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "март" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "април" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "май" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "юни" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "юли" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "август" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "септември" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "октомври" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "ноември" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "декември" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "яну" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "фев" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "март" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "май" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "юни" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "юли" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "септ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "ное" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "дек" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "неделя" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "понеделник" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "вторник" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "сряда" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "четвъртък" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "петък" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "събота" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "нд" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "пн" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "вт" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "ср" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "чт" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "пт" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "сб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "нд" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "пн" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "вт" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "ср" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "чт" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "пт" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Сед" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "календар-месец-година" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "няма" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Час" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "минута" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "секунда" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Полето е задължително" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Моля поправете тази област" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Моля въведете валиден емайл адрес" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Моля, въведете валиден URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Моля, въведете валидна дата" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Моля въведете валидна дата (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Моля, въведете валиден номер" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Моля, въведете валиден номер на кредитна карта" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Моля, въведете само цифри" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Моля, въведете една и съща стойност отново" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Моля въведете не повече от {0} знака" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Моля, въведете поне {0} букви" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Моля въведете стойност с дължина между {0} и {1} знака" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Моля, въведете стойност между {0} и {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Моля въведете стойност по-малка или равна на {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Въведете стойност по-голяма от или равна на {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Моля, въведете валиден дата или час" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Моля, въведете валиден HEX" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3008,8 +3015,8 @@ msgstr "Подзаявка" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "DB" @@ -3803,7 +3810,7 @@ msgstr "Индекс %s беше изтрит." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3861,8 +3868,8 @@ msgstr "Изглед" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Таблица" @@ -4222,46 +4229,46 @@ msgstr "Този MySQL сървър не поддържа хранилището msgid "Unknown table status:" msgstr "Неизвестно състояние на таблица:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "БД-източник `%s` не е намерена!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Целевата БД `%s` не е намерена!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Невалидна БД:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Невалидно име на таблица:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Грешка при преименуване на таблица %1$s в %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s беше преименувана на %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Таблицата с визуалните настройки не може да бъде запазена!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4269,19 +4276,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на първичния ключ трябва да е \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Индексът не може да бъде преименуван на PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Не са дефинирани части на индекс!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11133,61 +11140,61 @@ msgstr "Форматира текст като SQL заявка със синт msgid "Formats text as XML with syntax highlighting." msgstr "Форматира текст като SQL заявка със синтактично оцветяване." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Грешка: Релацията вече съществува." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY релация е добавена" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Грешка: Релацията е изключена!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Добавена е вътрешна релация" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY релация е добавена" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Грешка: Релацията не е добавена." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11324,18 +11331,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "няма описание" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11343,14 +11350,14 @@ msgid "" "configuration storage there." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Липсват таблици от хранилището за конфигурация на phpMyAdmin" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12060,26 +12067,29 @@ msgid "routine" msgstr "процедура" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Не разполагате с права, за да създадете процедура" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Няма процедура с име %1$s в БД %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12100,12 +12110,15 @@ msgid "trigger" msgstr "тригер" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Не разполагате с права, за да създадете тригер" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Няма тригер с име %1$s в БД %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12126,12 +12139,15 @@ msgid "event" msgstr "събитие" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Не разполагате с права, за да създадете събитие" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Няма събитие с име %1$s в БД %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13895,7 +13911,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14017,7 +14033,7 @@ msgstr "В началото на таблицата" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14040,6 +14056,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "В началото на таблицата" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15672,38 +15694,45 @@ msgstr "Действие" msgid "Constraint properties" msgstr "Ограничения за таблица" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Ограничение за външен ключ" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Добавяне ограничения" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Вътрешни релации" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Вътрешна релация" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Вътрешна релация не е необходима, при наличието на съответен FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15715,13 +15744,13 @@ msgstr "Изберете колона за показване" msgid "Foreign key constraint %s has been dropped" msgstr "Ограничение за външен ключ" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ограничения за таблица" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/bn.po b/po/bn.po index 7a6f0d1fa9..b71e2dee84 100644 --- a/po/bn.po +++ b/po/bn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:44+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bengali - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "চিহ্নিত/অচিহ্নিত করার জন্য ক্লীক করুন" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "স্তম্ভের নাম প্রতিলিপ করার জন্য দুইবার ক্লীক করুন" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "সব দেখাও" -#: js/messages.php:581 +#: js/messages.php:587 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,135 +2477,135 @@ msgstr "" "এই টেবিলে কোন অনন্য স্তম্ভ নাই। সংরক্ষনের পরে সম্পাদনা, চেকবক্স, প্রতিলিপি এবং মুছার " "জন্য সংযোগগুলো কাজ করবে না।" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "প্রকৃত লেখা" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "বাতিল" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "বাতিলকৃত" -#: js/messages.php:596 +#: js/messages.php:602 #, fuzzy #| msgid "Success." msgid "Success" msgstr "সফল।" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "আমদানি সর্ম্পকিত স্বাভাবিক" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "লগ ফাইলের স্থান" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "টেবল নির্বাচন" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "প্রিন্ট" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "আপনি প্রায় সমস্ত তথ্য দুই বার ক্লীক করে সরাসরি সম্পাদনা করতে পারবেন।" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "আপনি প্রায় তথ্য সরাসরি ক্লীক করে সম্পাদনা করতে পারবেন।" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "সংযোগে যাও" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "স্তম্ভের নাম প্রতিলিপি" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "স্তম্ভের নামটির উপর ডান ক্লীক করুন ওটা ক্লীপর্বোডে প্রতিলিপি করার জন্য।" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "পাসওর্য়াড উৎপাদন কর" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "উৎপাদন কর" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "অধিক" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "প্যানেল দেখাও" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ইনডেক্স প্যানেল" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "চলাচল ফ্রেইমে লোগো দেখাও" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "প্রধান ফ্রেম পরিবর্তন" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "পাতাটি হিস্টোরীতে পাওয়া যায়নি, সম্ভবত নষ্ট হয়েগেছে।" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2608,123 +2615,123 @@ msgstr "" "%s, বেরিয়েছে %s।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", সর্বশেষ সুস্থিত সংস্করন:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "তারিখ পর্যন্ত" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "ভিউ তৈরী" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "ভুল সর্ম্পকিত প্রতিবেদন দাখিল কর" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "ভুলের প্রতিবেদন দাখিল" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "একটি মারাত্মক জাভা স্ত্রিপট ভুল হয়েছে। আপনি কি এর প্রতিবেদন পাঠাতে চান?" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "প্রতিবেদন সেটিংস পরিবর্তন" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "প্রতিবেদনের বিশদ দেখাও" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "উপেক্ষা" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "এই অনুসন্ধানটি আবার দেখাও" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL query" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "টেবলের মন্তব্য" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "খোজাঁর ফলাফল লুকাও" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,383 +2740,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "ডাটাবেজ কপি কর" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "টেবিলের পুর্বপদ দিন:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "টেবল এর নামের পূর্বাংশ প্রতিস্থাপন করা" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "টেবল নামের পূর্বাংশসহ প্রতিলিপি কর" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "পূর্ববর্তী" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "পরবর্তী" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "আজ" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "জানুয়ারী" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "ফেব্রুয়ারী" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "মার্চ" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "এপ্রিল" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "মে" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "জুন" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "জুলাই" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "অগাষ্ট" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "সেপ্টেম্বর" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "অক্টোবর" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "নভেম্বর" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "ডিসেম্বর" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "জান" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "ফেব" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "মার" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "এপ্রি" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "মে" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "জুন" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "জুল" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "আগ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "সেপ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "অক্ট" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "নভে" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "ডিসে" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "রবিবার" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "সোমবার" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "মঙ্গলবার" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "বুধবার" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "বৃহস্পতিবার" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "শুক্রবার" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "শনিবার" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "রবি" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "সোম" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "মঙ্গল" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "বৃধ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "বৃহস্পতি" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "শুক্র" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "শনি" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "রবি" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "সোম" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "মঙ্গ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "বুধ" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "বৃহ" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "শুক্র" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "শনি" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "সপ্তাহ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "বর্ষপঞ্জি-মাস-বছর" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "- কিছু না -" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "ঘন্টা" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "মিনিট" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "সেকেন্ড" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "আক্ষরীক ক্ষেত্র ব্যবহার করুন" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "একটি কার্যকর দৈর্ঘ্য দিন!" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "একটি কার্যকর নাম্বার দিন!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3205,8 +3212,8 @@ msgstr "সহ-অনুসন্ধান" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "ডাটাবেইজ" @@ -4082,7 +4089,7 @@ msgstr "ইনডেক্স %s মুছা হয়েছে।" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4138,8 +4145,8 @@ msgstr "দেখা" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "টেবল" @@ -4527,41 +4534,41 @@ msgstr "এই MySQL সার্ভারটি %s মজুদ ব্যবস msgid "Unknown table status:" msgstr "টেবিলের অবস্থা অজ্ঞাত: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "মূল ডাটাবেইজ `%s` পাওয়া যায়নি!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "কাংখিত %s ডাটাবেইজ পাওয়া যায়নি!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "অকার্যকর ডাটাবেজ:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "অকার্যকর টেবিলের নাম:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "টেবিল %1$s টি %2$s নাম করনে ব্যাথ্য হয়েছে!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "টেবিল %1$s থেকে %2$s এ নামকরন করা হয়েছে।" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "টেবলের UI পছন্দ সংরক্ষন করা যায়নি" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4570,7 +4577,7 @@ msgstr "" "টেবলের UI পছন্দ পরিস্কার করতে ব্যার্থ হয়েছি ($cfg['Servers'][$i] " "['MaxTableUiprefs'] %s দেখুন)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4580,19 +4587,19 @@ msgstr "" "UI পছন্দের তথ্য \"%s\" সংরক্ষন করা যায়নি। পরিবর্তন গুলো এই পাতাটি রিফ্রেশ করলে " "থাকবে না। টেবলের গঠন পরিবর্তীত হয়েছে কিনা পরীক্ষা করে দেখুন।" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "প্রাথমিক কী'র নাম অবশ্যই \"PRIMARY\" হতে হবে!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "ইনডেক্সটি PRIMARY হিসাবে নাম করন করা যাবে না!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "ইনডেক্সের অংশ দেওয়া হয়নি!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s এ ফরেন কী তৈরী করতে সমস্যা হচ্ছে (তথ্যের ধরন পরীক্ষা করুন)" @@ -11478,61 +11485,61 @@ msgstr "বাক্য চিহ্নিত করনসহ SQL অনুস msgid "Formats text as XML with syntax highlighting." msgstr "বাক্য চিহ্নিত করনসহ SQL অনুসন্ধান গঠন কর।" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "ভুল: সর্ম্পক পূর্ব থেকেই তৈরী আছে।" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "ভুল: সর্ম্পক তৈরী অকার্যকর করা আছে!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "আভ্যন্তরীন সম্পর্ক যোগ করা হয়েছে" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY সর্ম্পক যোগ করা হয়েছে" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "ভুল: সর্ম্পক যোগ করা হয়নি" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11669,18 +11676,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "আধুনিক কনফিগারেশন ফাইল লোড করার জন্য phpMyAdmin এ আবার লগইন করুন।" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "বণর্না নাই" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11688,14 +11695,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin কনফিগারেশনের storage table পাওয়া যাচ্ছে না" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12387,26 +12394,29 @@ msgid "routine" msgstr "রুটিন" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "একটি রুটিন তৈরী করার প্রয়োজনীয় অধীকার আপনার নাই" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "ডাটাবেইজ %2$s তে %1$s নামের কোন রুটিন পাওয়া যায়নি" #: libraries/rte/rte_words.lib.php:43 @@ -12427,12 +12437,15 @@ msgid "trigger" msgstr "ট্রিগার" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "একটি ট্রিগার তৈরীর জন্য প্রয়োজনীয় অধিকার নাই" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "ডাটাবেইজ %2$s এ %1$s নামে কোন ট্রিগার পাওয়া যায়নি" #: libraries/rte/rte_words.lib.php:57 @@ -12453,12 +12466,15 @@ msgid "event" msgstr "ইভেন্ট" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "একটি ইভেন্ট যোগ করার জন্য প্রয়োজনীয় অধিকার আপনার নাই" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "ডাটাবেইজ %2$s এ %1$s নামের কোন ইভেন্ট পাওয়া যায়নি" #: libraries/rte/rte_words.lib.php:71 @@ -14259,7 +14275,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14381,7 +14397,7 @@ msgstr "টেবিলের শুরুতে" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14404,6 +14420,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "টেবিলের শুরুতে" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16017,37 +16039,44 @@ msgstr "কর্ম" msgid "Constraint properties" msgstr "টেবলের সীমবদ্ধতা" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "ফরেন কীর নিয়ম" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "নিয়মাবলী যোগ কর" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "অভ্যন্তরীন সর্ম্পক" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "আভ্যন্তরীন রিলেশন" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "যখন ফরেন কী সর্ম্পক থাকে তখন অভ্যন্তরীন সর্ম্পকটি প্রয়োজনীয় নয়।" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "প্রদর্শনের জন্য স্তম্ভ পছন্দ কর:" @@ -16057,11 +16086,11 @@ msgstr "প্রদর্শনের জন্য স্তম্ভ পছন msgid "Foreign key constraint %s has been dropped" msgstr "ফরেন কীর নিয়ম" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "কন্সট্রেইনের নাম" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/br.po b/po/br.po index 728dc11d6e..733ea48901 100644 --- a/po/br.po +++ b/po/br.po @@ -7,11 +7,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-07 15:36+0000\n" "Last-Translator: Nils Van Zuijlen \n" -"Language-Team: Breton " -"\n" +"Language-Team: Breton \n" "Language: br\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,7 +39,7 @@ msgid "Click to sort." msgstr "Klikañ evit diuzañ" #: db_central_columns.php:149 -#, fuzzy, php-format +#, php-format msgid "Showing rows %1$s - %2$s." msgstr "" @@ -69,11 +69,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn :" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -543,7 +544,7 @@ msgstr "" msgid "Succeeded" msgstr "Moned nac'het !" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "" @@ -559,8 +560,8 @@ msgid "" "You probably tried to upload a file that is too large. Please refer to " "%sdocumentation%s for a workaround for this limit." msgstr "" -"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an %" -"steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." +"Evit doare hoc'h eus klasket enrollañ ur restr re vras. Sellit ouzh an " +"%steulioù titouriñ%s evit gwelet penaos c'hoari an dro d'ar vevenn-se." #: import.php:370 import.php:684 msgid "Showing bookmark" @@ -651,7 +652,7 @@ msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'." msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -675,7 +676,7 @@ msgstr "" msgid "General settings" msgstr "Kemmañ an arventennoù" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1111,7 +1112,7 @@ msgstr "" #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "" @@ -1600,7 +1601,7 @@ msgstr "Displegañ SQL" msgid "Status" msgstr "Statud" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -2100,7 +2101,7 @@ msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Graet" @@ -2179,7 +2180,7 @@ msgstr "N'eus bet diuzet linenn ebet" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Enrollañ" @@ -2268,7 +2269,7 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2323,30 +2324,36 @@ msgstr "" #: js/messages.php:528 msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" + +#: js/messages.php:534 +msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Diuzit an alc'hwez daveet" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Diuzit an alc'hwez estren" -#: js/messages.php:536 +#: js/messages.php:542 #, 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:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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?" @@ -2354,261 +2361,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:542 +#: js/messages.php:548 msgid "Page name" msgstr "" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 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:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 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:546 +#: js/messages.php:552 #, fuzzy #| msgid "Delete" msgid "Delete page" msgstr "Diverkañ" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:548 +#: js/messages.php:554 #, 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:549 +#: js/messages.php:555 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid page name" msgstr "Niverenn borzh direizh" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:553 +#: js/messages.php:559 #, fuzzy #| msgid "Edit or export relational schema" msgid "Export relational schema" msgstr "Embann pe ezporzhiañ ur chema kar" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:557 +#: js/messages.php:563 #, 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:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:564 +#: js/messages.php:570 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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "" -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:570 +#: js/messages.php:576 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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Diskouez pep tra" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Aradennad linennoù" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Nullañ" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Talvoudoù enporzhiañ dre ziouer" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Diuzañ pep tra" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Set value: %s" msgid "Go to link:" msgstr "Lakaat an talvoud da %s" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "No rows selected" msgid "Copy column name." msgstr "N'eus bet diuzet linenn ebet" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Genel ur ger-tremen" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genel" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Muioc'h" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Diskouez pep tra" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Kuzhat menegerioù" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Diskouez al logo er banell verdeiñ gleiz" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Personelaat ar framm pennañ" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2618,119 +2625,119 @@ msgstr "" "hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", stumm stabil diwezhañ :" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "hizivaet" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Kemmañ an arventennoù" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Diskouez pep tra" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Na ober van" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Issued queries" msgid "Execute this query again?" msgstr "Rekedoù resevet" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Evezhiadennoù diwar-benn an daolenn" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Kuzhat disoc'hoù an enklask" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2739,36 +2746,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Eilañ an diaz roadennoù war" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erlec'hiañ rakger an daolenn" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Eilañ an daolenn enni ur rakger" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Kent" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2776,149 +2783,149 @@ msgid "Next" msgstr "War-lerc'h" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hiziv" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Genver" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "C'hwevrer" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Meurzh" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Ebrel" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mae" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Mezheven" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Gouere" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Eost" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Gwengolo" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Here" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Du" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Kerzu" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "C'hwe" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Meu" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mae" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Mezh" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Goue" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Eost" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Gwen" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Here" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Du" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Kzu" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Sul" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Lun" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Meurzh" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Merc'her" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Yaou" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Gwener" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sadorn" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2926,205 +2933,205 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Meu" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Yaou" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "L" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Mz" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Mc" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Y" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "G" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sizh." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Hini" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Eur" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Munut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Eilenn" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "Maeziennoù testenn" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Niverenn borzh direizh" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Niverenn borzh direizh" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Niverenn borzh direizh" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Niverenn borzh direizh" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Niverenn borzh direizh" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Niverenn borzh direizh" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Niverenn borzh direizh" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Niverenn borzh direizh" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Niverenn borzh direizh" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Niverenn borzh direizh" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Niverenn borzh direizh" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Niverenn borzh direizh" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3221,8 +3228,8 @@ msgstr "Reked SQL" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Diaz roadennoù" @@ -4138,7 +4145,7 @@ msgstr "Diverket eo bet ar meneger %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4196,8 +4203,8 @@ msgstr "Gwelet" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Taolenn" @@ -4578,55 +4585,55 @@ msgstr "N'eo ket skoret al lusker stokañ %s gant ar servijer MySQL-mañ." msgid "Unknown table status:" msgstr "Diskouez pep tra" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "N'eo ket bet kavet an tem %s !" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Diaz roadennoù direizh" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Anv taolenn direizh" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Fazi en ur adenvel %1$s e %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Anv an daolenn %s zo %s bremañ" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4634,19 +4641,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11399,59 +11406,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relation has been added." msgstr "Diverket eo bet ar sined." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "The bookmark has been deleted." msgid "FOREIGN KEY relation has been removed." msgstr "Diverket eo bet ar sined." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "N'haller ket lenn ar restr" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relation has been removed." @@ -11579,18 +11586,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -11602,13 +11609,13 @@ msgstr "" "Heuliañ ar c'hemmoù graet en diaz roadennoù. Rekis eo kaout ar stokañ " "kefluniadurioù phpMyAdmin." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "" #| "Tracking of changes made in database. Requires the phpMyAdmin " @@ -12317,26 +12324,27 @@ msgid "routine" msgstr "Kemmañ un argerzh" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" "N'eus bet kavet argerzh ebet gantañ an anv a %1$s en diaz roadennoù %2$s" @@ -12360,13 +12368,13 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No routine with name %1$s found in database %2$s" -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" "N'eus bet kavet argerzh ebet gantañ an anv a %1$s en diaz roadennoù %2$s" @@ -12388,13 +12396,13 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No routine with name %1$s found in database %2$s" -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" "N'eus bet kavet argerzh ebet gantañ an anv a %1$s en diaz roadennoù %2$s" @@ -14092,7 +14100,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14208,7 +14216,7 @@ msgstr "Niver a linennoù da ensoc'hañ" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14229,6 +14237,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Number of inserted rows" +msgid "Unexpected ordering of clauses." +msgstr "Niver a linennoù da ensoc'hañ" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15823,39 +15837,46 @@ msgstr "Oberiadenn" msgid "Constraint properties" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "The bookmark has been deleted." msgid "Internal relations" msgstr "Diverket eo bet ar sined." -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15867,13 +15888,13 @@ msgstr "Dibab ar bann da ziskouez" msgid "Foreign key constraint %s has been dropped" msgstr "Bevenn evit an alc'hwezioù estren" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Add constraints" msgid "Constraint name" msgstr "Ouzhpennañ ar strishadurioù" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add column" diff --git a/po/brx.po b/po/brx.po index 56c8a32f24..48cb56e296 100644 --- a/po/brx.po +++ b/po/brx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-09-04 09:33+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bodo - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2317,105 +2324,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2431,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2858,8 +2865,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3646,7 +3653,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3702,8 +3709,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4063,46 +4070,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4110,19 +4117,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10241,47 +10248,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10397,31 +10404,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11063,26 +11070,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11103,12 +11110,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11129,12 +11136,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12745,7 +12752,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12845,7 +12852,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12866,6 +12873,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14293,35 +14304,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14330,11 +14348,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/bs.po b/po/bs.po index 4057d76835..4e69dcc93a 100644 --- a/po/bs.po +++ b/po/bs.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:31+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Bosnian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Imena kolona" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "Linije se završavaju sa" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Uvoz fajlova" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Baza ne postoji" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Imena kolona" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Promeni lozinku" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 #, fuzzy msgid "Generate" msgstr "Generirao" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Dodaj novo polje" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Prikaži mrežu" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Opcije za izvoz baze" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2615,121 +2622,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Baza ne postoji" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Verzija servera" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Izbor servera" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Izbor servera" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opšte osobine relacija" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Prikaži tabele" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2745,37 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy msgid "Copy tables to" msgstr "Baza ne postoji" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Dodaj novo polje" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Zamijeni podatke u tabeli sa podatcima iz datoteke" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodna" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2776,96 +2783,96 @@ msgid "Next" msgstr "Slijedeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarni" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "apr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "maj" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "jun" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "jul" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "aug" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "okt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2873,78 +2880,78 @@ msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2952,199 +2959,199 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "se koristi" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "u sekundi" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Izaberite bazu" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Izaberite stranu koju menjate" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3240,8 +3247,8 @@ msgstr "u upitu" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Baza podataka" @@ -4157,7 +4164,7 @@ msgstr "Ključ %s je obrisan." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4213,8 +4220,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4609,50 +4616,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Prikaži tabele" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Baza ne postoji" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Unutar tabela:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Verzija servera" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promjenjeno ime u %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4660,19 +4667,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Dijelovi ključa nisu definisani!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11391,60 +11398,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Izmjene su sačuvane" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Opšte osobine relacija" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Izmjene su sačuvane" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Datoteku nije moguće pročitati" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Opšte osobine relacija" @@ -11577,31 +11584,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12310,27 +12317,27 @@ msgstr "Dodaj novo polje" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nije Vam dozvoljeno da budete ovdje!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Tabele nisu pronađene u bazi." #: libraries/rte/rte_words.lib.php:43 @@ -12355,13 +12362,13 @@ msgstr "Dodaj novog korisnika" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nije Vam dozvoljeno da budete ovdje!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Tabele nisu pronađene u bazi." #: libraries/rte/rte_words.lib.php:57 @@ -12386,13 +12393,13 @@ msgstr "Poslato" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nije Vam dozvoljeno da budete ovdje!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Tabele nisu pronađene u bazi." #: libraries/rte/rte_words.lib.php:71 @@ -14154,7 +14161,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14266,7 +14273,7 @@ msgstr "Na početku tabele" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14287,6 +14294,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na početku tabele" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15946,39 +15959,46 @@ msgstr "Akcija" msgid "Constraint properties" msgstr "Imena kolona" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add a new User" msgid "+ Add constraint" msgstr "Dodaj novog korisnika" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy msgid "Internal relations" msgstr "Opšte osobine relacija" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy msgid "Internal relation" msgstr "Opšte osobine relacija" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15990,13 +16010,13 @@ msgstr "Izaberi polja za prikaz" msgid "Foreign key constraint %s has been dropped" msgstr "Polje %s je obrisano" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Imena kolona" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "Dodaj novo polje" diff --git a/po/ca.po b/po/ca.po index cab68bcf7e..e91e0361ed 100644 --- a/po/ca.po +++ b/po/ca.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-20 21:12+0000\n" "Last-Translator: Xavier Navarro \n" "Language-Team: Catalan - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2310,28 +2317,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Prem per marcar/desmarcar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Feu doble clic per copiar el nom de columna." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostra tot" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2340,13 +2347,13 @@ msgstr "" "l'edició de quadrícula, checkbox, Editar, Copiar i Esborrar enllaços poden " "no funcionar després de desar." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2354,102 +2361,102 @@ msgstr "" "De veritat vols veure totes les files? Una taula gran pot fer fallar el " "navegador." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Longitud inicial" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Cancel.lar" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avortat" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Correcte" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importar l'estat" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Deixa anar els arxius aquí" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Tria primer la base de dades" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Vés a l'enllaç:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copia el nom de la columna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Genera una contrasenya" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genera" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Més" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Mostra el panell" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Amagar el panell" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostra l'arbre d'ítems amagat." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desenllaça amb el panell principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2459,42 +2466,42 @@ msgstr "" "actualitzar-la. La nova versió és la %s, alliberada el %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", darrera versió estable:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "actualitzat" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Crea una vista" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Enviar informe d'error" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Presentar informe d'error" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Canviar les configuracions de l'informe" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Mostra el detall de l'informe" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2502,7 +2509,7 @@ msgstr "" "La vostra exportació és incomplerta degut al límit de temps d'execució massa " "baix a nivell de PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2511,59 +2518,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Detectats alguns errors al servidor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Mira al peu d'aquesta finestra." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignora tot" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executar aquesta consulta de nou?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Realment vols esborrar aquesta marca?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultes executades %s vegades en %s segons." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(s) correctes" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Mostra els arguments" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Amaga els arguments" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Temps dedicat:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2579,347 +2586,347 @@ msgstr "" "connexió\" podria ajudar. En Safari, tal problema és generalment causat pel " "\"Mode Privat de Navegació\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Còpia taules a" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Afegir prefix de taula" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Reemplaçar taula amb prefix" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia la taula amb prefix" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Mes anterior" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Mes següent" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Avui" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Gener" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Febrer" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Març" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Abril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maig" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juny" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juliol" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agost" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Setembre" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Octubre" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembre" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Desembre" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Des" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Diumenge" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Dilluns" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Dimarts" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Dimecres" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Dijous" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Divendres" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Dissabte" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Diu" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Dll" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Dma" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Dcr" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Dij" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Div" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Dis" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Dg" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Dl" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Dm" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Dc" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Dj" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Dv" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Ds" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Se" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendari-mes-any" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Sufix de l'any" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Segon" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Aquest camp és obligatori" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Corregeix aquest camp" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Entra una adreça de correu electrònic vàlida" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Entra una URL vàlida" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Entra una data vàlida" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Entra una data vàlida (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Entra un numero vàlid" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Entra un numero vàlid de targeta de crèdit" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Entra només digits" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Entra el mateix valor un altre cop" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Entra no més de {0} caracters" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Entra al menys {0} caracters" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Entra un valor entre {0} i {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Entra un valor menor o igual a {0}" -#: js/messages.php:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Entra una hora o data vàlida" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Entra valor HEX correcte" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3019,8 +3026,8 @@ msgstr "Re-consulta" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de dades" @@ -3817,7 +3824,7 @@ msgstr "S'ha esborrat l'índex %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3877,8 +3884,8 @@ msgstr "Vista" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Taula" @@ -4240,39 +4247,39 @@ msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s." msgid "Unknown table status:" msgstr "Estat de taula desconegut:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "No s'ha trobat la base de dades origen `%s`!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "No s'ha trobat la base de dades destí `%s`!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Base de dades incorrecte:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nom de taula incorrecte:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Error reanomenant la taula %1$s a %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La taula %1$s ha canviat de nom a %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "No s'ha pogut desar la taula de preferències d'interfície!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4281,7 +4288,7 @@ msgstr "" "No s'ha pogut netejar la taula de preferències de la interfície d'usuari " "(vegeu $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4292,19 +4299,19 @@ msgstr "" "no seran persistents després d'actualitzar la pàgina. Comprova si " "l'estructura de la taula ha canviat." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "El nom de la clau principal ha de ser \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "No pots canviar el nom d'un índex a PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "No s'han definit parts de l'índex!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11037,47 +11044,47 @@ msgstr "Formateig del text com a JSON amb resaltat de sintaxi." msgid "Formats text as XML with syntax highlighting." msgstr "Formateig del text com a XML amb resaltat de sintaxi." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Error: la relació ja existeix." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "S'ha afegit una relació de CLAU EXTERNA." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: La relació de CLAU EXTERNA no s'ha afegit!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Error. Índex no trobat en columna (es)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Error: Funcionalitats relacionals desactivades!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Afegida relació interna." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Error: La relació interna no s'ha pogut afegir!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Eliminada la relació de CLAU EXTERNA." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: La relació de CLAU EXTERNA no es pot eliminar!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Error: La relació interna no es pot eliminar!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relació interna eliminada." @@ -11197,11 +11204,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-entra a phpMyAdmin per a carregar l'arxiu de configuració actualitzat." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "sense descripció" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11211,7 +11218,7 @@ msgstr "" "d'anar a la pestanya 'Operacions' de qualsevol base de dades per establir la " "configuració d'enmagatzemament de phpMyAdmin allí." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11220,7 +11227,7 @@ msgstr "" "%sCrea%s una base de dades de nom 'phpmyadmin' i estableix la configuració " "d'enmagatzemament de phpMyAdmin aqui." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11228,7 +11235,7 @@ msgstr "" "%sCrea%s la configuració d'enmagatzemamant de phpMyAdmin a la base de dades " "actual." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11907,26 +11914,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "No tens prou permisos per crear una rutina" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "No s'ha trobat una rutina de nom %1$s a la base de dades %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11947,12 +11957,15 @@ msgid "trigger" msgstr "disparador" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "No tens prou permisos per crear un disparador" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "No s'ha trobat un disparador amb nom %1$s a la base de dades %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11973,12 +11986,15 @@ msgid "event" msgstr "esdeveniment" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "No tens prou permisos per crear un esdeveniment" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "No s'ha trobat un esdeveniment amb nom %1$s a la base de dades %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13800,7 +13816,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13901,7 +13917,7 @@ msgstr "Inici no esperat de declaració." msgid "Unrecognized statement type." msgstr "Tipus de declaració no reconegut." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "No s'ha iniciat cap transacció anteriorment." @@ -13922,6 +13938,12 @@ msgstr "Aquest tipus de clàusula s'ha analitzat anteriorment." msgid "Unrecognized keyword." msgstr "Paraula clau no reconeguda." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Inici no esperat de declaració." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "S'esperava el nom de l'entitat." @@ -15409,29 +15431,36 @@ msgstr "Accions" msgid "Constraint properties" msgstr "Propietats de la restricció" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "Només es mostraran columnes amb índex. Pots definir un índex a sota." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Límit de clau externa" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Afegeix restricció" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relacions internes" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relació interna" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15439,7 +15468,7 @@ msgstr "" "No es necessita una relació interna quan existeix una relació corresponent " "de FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Tria la columna a mostrar:" @@ -15448,11 +15477,11 @@ msgstr "Tria la columna a mostrar:" msgid "Foreign key constraint %s has been dropped" msgstr "S'ha eliminat la restricció %s de la clau externa" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Nom de la restricció" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Afegeix columna" diff --git a/po/ckb.po b/po/ckb.po index 4a2e32d23c..74877f6991 100644 --- a/po/ckb.po +++ b/po/ckb.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-10 19:30+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kurdish Sorani - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "کرتە بکە بۆ نیشانکردن / لابردنی نیشانکردن." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "دوو کرتە بکە بۆ ڕوونووسکردنی ناوی ستون." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "هه‌مووی ببینه‌" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "ڕیزبه‌ندی هێڵی" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "واژلێهێنان" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "پووچەڵ کرایەوە" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "سەرکەوتووبوو" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "ئاستی هێنان" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "پەڕگەکانت لە ئێرە دابنێ" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "بنکەیەکی دراوە هەڵبژێرە لە پێشدا" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "بڕۆ بۆ بەستەر:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "ڕوونووسکردنی ناوی بەستەر." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "کرتەی ڕاست لەسەر ناوی ستون بکە بۆ لەبەرگرتنەوەی بۆ ناو کلیپ بۆرد." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "دروستکردنی تێپەڕە وشە" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "دروستکردن" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "زیاتر" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "هەمووی پێشاندە" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "پێشاندانی نیشاندەرەکان" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "شاردنەوەی نیشاندەرەکان" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2363,27 +2370,27 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "، دوایین وەشانی جێگیر:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "نوێترینە" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "ناردنی ڕاپۆرتی هەڵە" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2391,79 +2398,79 @@ msgstr "" "هەڵەیەکی گەورەی JavaScript هاتە پێش، دەتەوێت لە ڕوودانی ئەو هەڵەیە " "ئاگادارمان بکەیتەوە؟" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "گۆڕینی ڕێکخستنەکانی ڕاپۆرت" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "وردە زانیارییەکانی ڕاپۆرت" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "تکایە چاو لە بەشی خوارەوەی ئەم پەنجەرە بکە." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "لە بیرکردنی هەموو" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "ئایا دڵنیایت کە دەتەوێت ئەو Bookmark‌ ـە بسڕیتەوە؟" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "تێبینیەکانی خشتە" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "شاردنەوەی ئەنجامەکانی گەڕان" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2472,347 +2479,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "لە ڕوونووسینەوەی بنکەی دراوە بۆ" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "گۆڕینی پێشگری خشتە" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "لەبەرگرتنەوەی خشتە لەگەڵ پێشگر" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "پێشتر" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "دواتر" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "ئەمڕۆ" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "کانونی دووەم" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "شوبات" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "مارت" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "نیسان" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "مایس" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "حوزەیران" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "تەموز" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ئاب" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "ئەیلول" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "تشرینی یەکەم" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "تشرینی دووەم" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "کانونی یەکەم" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "کانوونی دووەم" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "شوبات" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "مارت" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "نیسان" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "مایس" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "حوزیران" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "تەموز" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ئاب" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ئەیلول" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "تشرینی یەکەم" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "تشرینی دووەم" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "کانوونی یەکەم" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "یەک شەم" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "دوو شەم" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "سێ شەم" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "چوار شەم" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "پێنج شەم" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "هەینی" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "شەممە" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "یەک شەم" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "دوو شەم" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "سێ شەم" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "چوار شەم" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "پێنج شەم" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "هەینی" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "شەممە" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "یەک شەم" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "دوو شەم" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "سێ شەم" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "چوار شەم" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "پێنج شەم" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "هەینی" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "شەممە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "هەفتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "ڕۆژژمێر-مانگ-ساڵ" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "كاتژمێر" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "خولەک" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "چرکە" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "%d ژمارەی ڕیزی نادروستە." -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2906,8 +2913,8 @@ msgstr "داواکاری" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "بنکەی دراو" @@ -3698,7 +3705,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3754,8 +3761,8 @@ msgstr "نیشاندان" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "خشتە" @@ -4115,46 +4122,46 @@ msgstr "" msgid "Unknown table status:" msgstr "دۆخی نەزانراوی خشتە:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "بنکە زانیاری سەرچاوە '%s' نەدۆزرایەوە!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "بنکە زانیاری ئامانج '%s' نەدۆزرایەوە!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "بنکە زانیاری نادروست" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "ناوی خشتەی نادروست" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "هەڵە لە ناونانەوەی خشتەی %1$s بۆ %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "نەتوانرا خشتە تازەکە پاشەکەوت بکرێت" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4162,19 +4169,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10306,47 +10313,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "ڕیزەکە سڕایەوە" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "ڕیزەکە سڕایەوە" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "ناتوانیت پەڕگە بخوێنیتەوە" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "ڕیزەکە سڕایەوە" @@ -10462,31 +10469,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11128,27 +11135,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "هیچ خشتەیەک نەدۆزرایەوە لەناو بنکەدراو." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11168,13 +11176,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "هیچ خشتەیەک نەدۆزرایەوە لەناو بنکەدراو." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11194,13 +11203,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "هیچ خشتەیەک نەدۆزرایەوە لەناو بنکەدراو." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -12810,7 +12820,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12911,7 +12921,7 @@ msgstr "ژمارەی ڕیزەکان" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12932,6 +12942,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "ژمارەی ڕیزەکان" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14362,35 +14378,42 @@ msgstr "کردار" msgid "Constraint properties" msgstr "بەشداری کردن" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "زیادکردنی مەرج" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "ڕیزەکە سڕایەوە" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشاندان" @@ -14400,11 +14423,11 @@ msgstr "دەبێت لانیکەم ١ خانە هەڵبژێریت بۆ پیشان msgid "Foreign key constraint %s has been dropped" msgstr "زیادکردنی مەرج" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "بەشداری کردن" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "زیادکردن/سڕینەوەی ستونەکان" diff --git a/po/cs.po b/po/cs.po index 4a35fc0631..301e5a1b45 100644 --- a/po/cs.po +++ b/po/cs.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-04-19 01:00+0000\n" "Last-Translator: Liška \n" "Language-Team: Czech - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2277,26 +2284,26 @@ msgstr "" "
- Control+Kliknutí nebo Alt+Kliknutí(MAC: Shift+Option+Kliknutí) " "sloupec odstraní z ORDER BY podmínky" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klikněte pro označení." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Poklepejte pro zkopírování jména pole." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klikněte na šipku
pro vybrání sloupců." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Zobrazit vše" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2305,12 +2312,12 @@ msgstr "" "editování v mřížce, zaškrtávací políčka nebo odkazy na editaci a mazání " "fungovat." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2318,101 +2325,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Původní délka" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "zrušit" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Přerušené" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Úspěch" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Přetáhněte sem soubory" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Nejdříve zvolte databázi" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Přejít na odkaz:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Zkopírovat název pole." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Vytvořit heslo" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Vytvořit" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Více" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Zobrazit panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Skrýt panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Zobrazit skryté položky navigačního panelu." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Odpojit od hlavního panelu" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2422,48 +2429,48 @@ msgstr "" "je %s a byla vydána %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", poslední stabilní verze:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktuální" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Vytvořit pohled" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Odeslat chybové hlášení" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Změnit nastavení hlášení" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Zobrazit podrobnosti hlášení" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2472,58 +2479,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Na serveru došlo byly zjištěny chyby!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Prosím podívejte se na spodní část okna." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorovat vše" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Spustit tento dotaz znovu?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Opravdu si přejete odstranit tuto záložku?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "Zadáno %s argumentů" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Zobrazit argumenty" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Skrýt argumenty" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Doba běhu:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2532,347 +2539,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Zkopírovat tabulky do" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Přidat tabulce předponu" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Nahradit tabulce předponu" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Zkopírovat tabulku s předponou" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Předchozí" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Následující" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Dnešek" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "leden" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "únor" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "březen" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "duben" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "květen" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "červen" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "červenec" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "srpen" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "září" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "říjen" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "listopad" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "prosinec" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "led" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "úno" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "bře" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "dub" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "kvě" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "čen" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "čec" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "srp" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "zář" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "říj" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "lis" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "pro" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Neděle" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Pondělí" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Úterý" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Středa" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Čtvrtek" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Pátek" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Úte" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Stř" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Čtv" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pát" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Út" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Čt" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pá" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Týd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuty" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekundy" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Prosím opravte hodnotu v tomto poli" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Prosím zadejte platný e-mail" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Prosím zadejte platnou adresu URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Prosím zadejte platné datum" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadejte platné datum dle ISO8601" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Prosím zadejte platné číslo" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Prosím zadejte platné číslo platební karty" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Prosím zadávejte pouze číslice" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Prosím zadejte stejnou hodnotu znovu" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Prosím nezadávejte více než {0} znaků" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Prosím zadejte více než {0} znaků" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadejte hodnotu mezi {0} a {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadejte číslo menší nebo rovno {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadejte číslo větší nebo rovno {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Prosím zadejte platné datum nebo čas" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Prosím zadejte platné hexadecimalní číslo" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2971,8 +2978,8 @@ msgstr "Znovu" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Databáze" @@ -3774,7 +3781,7 @@ msgstr "Klíč %s byl odstraněn." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3834,8 +3841,8 @@ msgstr "Pohled" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabulka" @@ -4200,39 +4207,39 @@ msgstr "Tento MySQL server nepodporuje úložiště %s." msgid "Unknown table status:" msgstr "Neznámý stav tabulky:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáze „%s“ nebyla nalezena!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Cílová databáze „%s“ nebyla nalezena!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Chybné jméno databáze:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Chybné jméno tabulky:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Chyba při přejmenování tabulky %1$s na %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabulka %1$s byla přejmenována na %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nepodařilo se uložit nastavení prohlížení tabulky!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4241,7 +4248,7 @@ msgstr "" "Selhalo vyčištění tabulky s nastavením procházení (viz $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4251,19 +4258,19 @@ msgstr "" "Nepodařilo se uložit nastavení „%s“. Změny se neprojeví po novém načtení " "stránky. Prosím zkontrolujte jestli se nezměnila struktura tabulky." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Jméno primárního klíče musí být „PRIMARY“!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Klíč nelze přejmenovat na „PRIMARY“!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nebyla zadána žádná část klíče!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Chyba při vytváření cizího klíče na %1$s (zkotrolujte typ pole)" @@ -10966,47 +10973,47 @@ msgstr "Zobrazí text jako JSON se zvýrazňováním syntaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Zobrazí text jako XML se zvýrazňováním syntaxe." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Chyba: Relace již existuje." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relace FOREIGN KEY byla vytvořena." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Chyba: Relace cizího klíče nemohla být přidána!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Chyba: Funkce relací jsou vypnuté!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Interní relace byla vytvořena." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Chyba: Interní relace nemohla být přidána!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relace FOREIGN KEY byla odstraněna." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Chyba: Relace FOREGN KEY nemohla být odstraněna!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Chyba: Itenrní relace nemohla být odstraněna!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Interní relace byla odstraněna." @@ -11130,18 +11137,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Prosím přihlašte se znovu , aby se projevily změny v konfiguračním souboru." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "žádný popisek" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11149,14 +11156,14 @@ msgid "" "configuration storage there." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Chybějící tabulky v úložišti nastavení phpMyAdmina" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11837,26 +11844,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nemáte dostatečná práva pro vytvoření rutiny" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "V databázi %2$s není žádná rutina se jménem %1$s" #: libraries/rte/rte_words.lib.php:43 @@ -11877,12 +11887,15 @@ msgid "trigger" msgstr "spoušť" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nemáte dostatečná práva pro vytvoření spouště" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "V databázi %2$s není žádná spoušť se jménem %1$s" #: libraries/rte/rte_words.lib.php:57 @@ -11903,12 +11916,15 @@ msgid "event" msgstr "událost" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nemáte dostatečná práva pro vytvoření události" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "V databázi %2$s nebyla nalezen událost se jménem %1$s" #: libraries/rte/rte_words.lib.php:71 @@ -13708,7 +13724,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13830,7 +13846,7 @@ msgstr "na začátku tabulky" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13853,6 +13869,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "na začátku tabulky" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15402,36 +15424,43 @@ msgstr "Akce" msgid "Constraint properties" msgstr "Vlastnosti omezení" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Omezení cizího klíče" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Přidat omezení" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "interních relací" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Interní relace" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interní relace není potřebná pokud existuje stejná relace pomocí FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Zvolte která pole zobrazit:" @@ -15440,11 +15469,11 @@ msgstr "Zvolte která pole zobrazit:" msgid "Foreign key constraint %s has been dropped" msgstr "Omezení cizího klíče %s bylo odstraněno" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Jméno omezení" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Přidat sloupec" diff --git a/po/cy.po b/po/cy.po index 5e458b5f19..1afc0b66ee 100644 --- a/po/cy.po +++ b/po/cy.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:04+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Welsh - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Columns" msgid "Double-click to copy column name." msgstr "Colofnau" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Dangos pob" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Safle gwreiddiol" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Diddymu" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Mewnforiwch ffeiliau" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Trothwy'r ffeil log" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Dewis Tablau" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Count tables" msgid "Go to link:" msgstr "Cyfrifwch y tablau" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Columns" msgid "Copy column name." msgstr "Colofnau" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generadu Cyfrinair" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generadu" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mo" msgid "More" msgstr "Llu" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dangos pob" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indecsau" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Dangos grid" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Defnyddiwch faes testun" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2691,126 +2698,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Gwiriwch y fersiwn diweddaraf" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "Neidiwch i'r gronfa ddata" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Crëwch fersiwn" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Nodweddion perthynas cyffredinol" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Teitl yr adroddiad" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Anwybyddu" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Dangoswch yr ymholiad hwn yma eto" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Gweithredu ymholiad a glustnodwyd" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Sylwadau tabl" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "mewn ymholiad" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2819,36 +2826,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copïwch y gronfa ddata i" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Rename table to" msgid "Add table prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Rename table to" msgid "Replace table with prefix" msgstr "Ailenwi tabl i" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Cynt" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2856,149 +2863,149 @@ msgid "Next" msgstr "Nesaf" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Heddiw" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Ionawr" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Chwefror" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mawrth" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Ebrill" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Mehefin" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Gorffennaf" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Awst" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Medi" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Hydref" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Tachwedd" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Rhagfyr" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Ion" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Chwe" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Maw" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Ebr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Meh" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Gor" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aws" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Med" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Hyd" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Tach" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Rhag" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Dydd Sul" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Dydd Llun" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Dydd Mawrth" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "DYdd Mercher" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Dydd Iau" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Dydd Gwener" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Dydd Sadwrn" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3006,205 +3013,205 @@ msgid "Sun" msgstr "Sul" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Llun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Maw" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Iau" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Gwe" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sad" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Llu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Ia" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Gw" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wy" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Dim" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Awr" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Munud" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Eiliad" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Defnyddiwch faes testun" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nid yn rhif porth ddilys" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3301,8 +3308,8 @@ msgstr "mewn ymholiad" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Cronfa ddata" @@ -4225,7 +4232,7 @@ msgstr "Cafodd indecs %s ei ollwng." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4283,8 +4290,8 @@ msgstr "Dangos" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabl" @@ -4682,54 +4689,54 @@ msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s." msgid "Unknown table status:" msgstr "Dim tablau" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Cronfa ddata ffynhonnell" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Heb ddarganfod thema ddiofyn %s!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Crofna ddata annilys" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Enw tabl annilys" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Gwall wrth ailenwi tabl %1$s i %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Cafodd y tabl %s ei ailenwi i %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4737,19 +4744,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11514,63 +11521,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Gwall: perthynas yn bodoli yn barod." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Perthynas mewnol wedi'i ychwanegu" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Perthynas FOREIGN KEY wedi'i ychwanegu" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Gwall: Perthynas heb ei ychwanegu." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11698,31 +11705,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12440,27 +12447,27 @@ msgid "routine" msgstr "Rheolweithiau" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." #: libraries/rte/rte_words.lib.php:43 @@ -12488,13 +12495,13 @@ msgid "trigger" msgstr "Ychwanegwch weinydd newydd" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." #: libraries/rte/rte_words.lib.php:57 @@ -12522,13 +12529,13 @@ msgid "event" msgstr "Digwyddiad" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata." #: libraries/rte/rte_words.lib.php:71 @@ -14254,7 +14261,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14370,7 +14377,7 @@ msgstr "Dangos dimensiynau'r tabl" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14391,6 +14398,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "Dangos dimensiynau'r tabl" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16051,37 +16064,44 @@ msgstr "Gweithred" msgid "Constraint properties" msgstr "Rheolweithiau" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Ychwanegwch cyfyngiadau" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Perthnasau mewnol" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16093,13 +16113,13 @@ msgstr "Dewis colofn i'w dangos" msgid "Foreign key constraint %s has been dropped" msgstr "Ychwanegwch cyfyngiadau" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Routines" msgid "Constraint name" msgstr "Rheolweithiau" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s column(s)" msgid "+ Add column" diff --git a/po/da.po b/po/da.po index c11d36f03b..45dfb2bbbf 100644 --- a/po/da.po +++ b/po/da.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-02 16:34+0000\n" "Last-Translator: Jørgen Thomsen \n" -"Language-Team: Danish " -"\n" +"Language-Team: Danish \n" "Language: da\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -62,11 +62,12 @@ msgstr "Tabelkommentarer:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -517,7 +518,7 @@ msgstr "" msgid "Succeeded" msgstr "Blev gennemført" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Mislykket" @@ -618,7 +619,7 @@ msgstr "\"DROP DATABASE\" erklæringer kan ikke bruges." msgid "Could not load the progress of the import." msgstr "Kunne ikke indlæse hvor langt importen er nået." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -642,7 +643,7 @@ msgstr "" msgid "General settings" msgstr "Generelle indstillinger" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -785,7 +786,8 @@ msgstr "" #: index.php:509 msgid "The secret passphrase in configuration (blowfish_secret) is too short." -msgstr "Det hemmelige password i konfigurationen (blowfish_secret) er for kort." +msgstr "" +"Det hemmelige password i konfigurationen (blowfish_secret) er for kort." #: index.php:523 msgid "" @@ -1051,7 +1053,7 @@ msgstr "Du skal tilføje mindst en kolonne." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Forhåndsvis SQL" @@ -1509,7 +1511,7 @@ msgstr "Forklar output" msgid "Status" msgstr "Status" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1962,7 +1964,7 @@ msgid "Second step of normalization (2NF)" msgstr "Andet trin af normaliseringen (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Færdig" @@ -2041,7 +2043,7 @@ msgstr "Der er ikke valgt afhængigheder!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Gem" @@ -2121,7 +2123,7 @@ msgstr "Vælg to forskellige kolonner" msgid "Data point content" msgstr "Datapunkt-indhold" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2173,6 +2175,18 @@ msgstr "" "disse værdier direkte, hvis det ønskes" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL accepterer værdier, som ikke kan vælges med skydeknappen; indtast " +"disse værdier direkte, hvis det ønskes" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2180,24 +2194,24 @@ msgstr "" "Indikerer at du har lavet ændringer ved denne side, du vil blive spurgt om " "godkendelse før ændringerne frafalder" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Vælg refereret nøgle" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Vælg fremmednøgle" -#: js/messages.php:536 +#: js/messages.php:542 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:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2205,76 +2219,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:542 +#: js/messages.php:548 msgid "Page name" msgstr "Sidenavn" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Gem side" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Åbn side" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Slet side" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Unavngivet" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Vælg venligst en side for at fortsætte" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Angiv venligst et gyldigt sidenavn" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Sletning af siden er gennemført" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Eksportér relationsskema" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Rettelserne er gemt" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tilføj mulighed for kolonnen \"%s\"." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d objekt(er) oprettet." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Send" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Tryk på ESC for at annullere redigeringen." -#: js/messages.php:564 +#: js/messages.php:570 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2282,15 +2296,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Træk for at ændre rækkefølge." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Klik for at sortere resultater efter denne kolonne." -#: js/messages.php:570 +#: js/messages.php:576 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2300,26 +2314,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klik for at markere/afmarkere." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dobbeltklik for at kopiere kolonnenavn." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2328,11 +2342,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2340,103 +2354,103 @@ msgstr "" "Sikker på du vil se alle rækkerne? For store tabeller kan dette få browseren " "til at gå ned." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Oprindelige længde" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "annullér" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afbrudt" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Gennemført" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Drop filerne her" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Vælg først en database" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Gå til linket:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopiér kolonnenavn." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generer adgangskode" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generer" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mere" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigationstræet." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Link med hovedpanel" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Fjern link fra hovedpanel" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2446,42 +2460,42 @@ msgstr "" "opgradere. Den nyeste version er %s, udgivet den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", seneste stabile version:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "up-to-date" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Opret view" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Send fejlrapporter" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Indsend fejlrapport" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Tilpas indstillinger for rapportering" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Vis detaljer for rapport" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2489,7 +2503,7 @@ msgstr "" "Din eksport er ikke komplet, da der er en lav tidsgrænse for afvikling på " "PHP-niveaut!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2498,60 +2512,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Der er registreret fejl på serveren!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Gennemse venligst bunden af denne side." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorér alle" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Udfør denne forespørgsel påny?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Er du sikker på at du vil slette dette bogmærke?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "En fejl opstod mens hentede SQL debug info." -#: js/messages.php:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(er) sendt" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Tabel kommentarer" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Skjul argumenterne" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tidsforbrug:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2579,347 @@ msgstr "" "forårsage problemet. Sletning af dit \"Offline webindhold\" kan hjælpe. I " "Safari er sådan et problem ofte forårsaget af browsing i \"Private Mode\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopier tabeller til" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Tilføj tabelpræfiks" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Erstat tabel med præfiks" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabel med præfiks" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Næste" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "I dag" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "marts" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "august" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "søndag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "mandag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "tirsdag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "onsdag" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "torsdag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "fredag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "lørdag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "søn" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "man" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "tir" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "ons" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "fre" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "lør" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "sø" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "on" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "lø" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "uge" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Time" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekund" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Dette felt er påkrævet" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Ret venligst dette felt" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Angiv en gyldig e-mailadresse" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Angiv en gyldig URL-adresse" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Indtast en gyldig dato" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Indtast en gyldig dato (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Angiv et gyldigt tal" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Indtast et gyldigt kreditkortnummer" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Angiv kun tal" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Angiv samme værdi igen" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Angiv venligst ikke mere end {0} tegn" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Angiv mindst {0} tegn" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Indtast venligst en værdi mellem {0} og {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Angiv venligst en gyldig dato eller tid" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Angiv venligst et gyldigt HEX-tal" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3003,8 +3017,8 @@ msgstr "Genforespørg" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3800,7 +3814,7 @@ msgstr "Indeks %s er blevet slettet." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3860,8 +3874,8 @@ msgstr "Visning" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4223,39 +4237,39 @@ msgstr "Denne MySQL-server understøtter ikke %s datalager." msgid "Unknown table status:" msgstr "Ukendt tabel status:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen '%s' blev ikke fundet!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Mål-databasen '%s' blev ikke fundet!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Ugyldig database:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Ugyldigt tabelnavn:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fejl ved omdøbning af tabel %1$s til %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s er nu omdøbt til %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Kunne ikke gemme indstillinger af brugergrænseflade for tabel!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4264,7 +4278,7 @@ msgstr "" "Kunne ikke rydde op i indstillinger for tabel-UI (se $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4275,19 +4289,19 @@ msgstr "" "efter at du opfrisker denne side. Undersøg, om tabelstrukturen er blevet " "ændret." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet på primærnøglen skal være \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke omdøbe indeks til PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Ingen dele af indeks er defineret!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fejl ved dannelse af fremmednøgle på %1$s (tjek datatyper)" @@ -6948,8 +6962,8 @@ msgid "" "A special MySQL user configured with limited permissions, more information " "available on [doc@linked-tables]documentation[/doc]." msgstr "" -"En speciel MySQL bruger med begrænsede tilladelser. Mere information på [doc" -"@linked-tables]dokumentation[/doc]." +"En speciel MySQL bruger med begrænsede tilladelser. Mere information på " +"[doc@linked-tables]dokumentation[/doc]." #: libraries/config/messages.inc.php:657 msgid "Control user" @@ -7166,8 +7180,8 @@ msgid "" "Leave blank for no [doc@relations@]relation-links[/doc] support, suggested: " "[kbd]pma__relation[/kbd]." msgstr "" -"Efterlades tom for ingen understøttelse af [doc@relations@]relation-" -"links[/doc], forslag: [kbd]pma_relation[/kbd]." +"Efterlades tom for ingen understøttelse af [doc@relations@]relation-links[/" +"doc], forslag: [kbd]pma_relation[/kbd]." #: libraries/config/messages.inc.php:744 msgid "Relation table" @@ -8947,8 +8961,8 @@ msgstr "Rediger næste række" msgid "" "Use TAB key to move from value to value, or CTRL+arrows to move anywhere." msgstr "" -"Brug TAB-tasten for at flytte dig fra værdi til værdi, eller CTRL+" -"piletasterne til at flytte frit omkring." +"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:1644 libraries/replication_gui.lib.php:542 #: libraries/rte/rte_routines.lib.php:1616 @@ -11022,47 +11036,47 @@ msgstr "Formatterer teksten som JSON med syntaksfremhævning." msgid "Formats text as XML with syntax highlighting." msgstr "Formatterer tekst som XML med syntaksfremhævning." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Fejl: relation findes allerede." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relation tilføjet." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fejl: FOREIGN KEY-relationen kunne ikke tilføjes!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Fejl: Manglende indeks for kolonne(r)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Fejl: Relationelle egenskaber er slået fra!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Intern relation tilføjet." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Fejl: Den interne relation kunne ikke tilføjes!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY-relationen er blevet fjernet." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fejl: FOREIGN KEY-relationen kunne ikke fjernes!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Fejl: Den interne relation kunne ikke fjernes!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Den interne relation er blevet fjernet." @@ -11187,11 +11201,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-login til phpMyAdmin for at indlæse den opdaterede konfigurationsfil." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11201,7 +11215,7 @@ msgstr "" "'phpmyadmin'. Du kan gå til 'Operationer' fanen af enhver database for at " "oprette phpMyAdmin konfigurationslageret der." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11209,13 +11223,13 @@ msgid "" "configuration storage there." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sOpret%s phpMyAdmin-konfigurationslageret i den aktuelle database." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sOpret%s manglende tabeller for phpMyAdmin-konfigurationslager." @@ -11894,30 +11908,39 @@ msgid "routine" msgstr "rutine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Du har ikke tilstrækkelige rettigheder til at oprette en rutine" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "Ingen rutine med navnet %1$s findes i database %2$s. Du kan mangle de " "nødvendige privilegier for at redigere denne rutine" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Ingen rutine med navnet %1$s findes i database %2$s. Du kan mangle de " "nødvendige rettigheder til at se/eksportere denne rutine" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Ingen rutine med navnet %1$s fundet i databasen %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11938,12 +11961,15 @@ msgid "trigger" msgstr "trigger/udløser" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Du har ikke tilstrækkelige rettigheder til at oprette en trigger" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Ingen trigger med navnet %1$s fundet i databasen %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11964,12 +11990,15 @@ msgid "event" msgstr "hændelse" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Du har ikke tilstrækkelige rettigheder til at oprette en hændelse" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Ingen hændelse med navnet %1$s fundet i database %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13840,8 +13869,12 @@ msgid "Unexpected end of CASE expression" msgstr "Uventet afslutning af CASE udtryk" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Et symbolnavn var ventet! Et reserveret nøgleord kan ikke bruges som et " @@ -13965,7 +13998,7 @@ msgstr "i begyndelsen af tabellen" msgid "Unrecognized statement type." msgstr "Ukendt type af statement." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Ingen transaktion er blevet startet tidligere." @@ -13988,6 +14021,12 @@ msgstr "Denne type af sætningskonstruktion er tidligere blevet parset." msgid "Unrecognized keyword." msgstr "Ukendt nøgleord." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "i begyndelsen af tabellen" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15542,31 +15581,38 @@ msgstr "Handlinger" msgid "Constraint properties" msgstr "Begrænsninger for egenskaber" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Det er blot kolonner med indeks, der bliver vist. Du kan definere et indeks " "nedenfor." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Begrænsning på fremmednøgle" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Tilføj begrænsning" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interne relationer" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15574,7 +15620,7 @@ msgstr "" "En intern relation er ikke nødvendig, når en tilsvarende FOREIGN KEY " "relation findes." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Vælg kolonne til visning:" @@ -15583,11 +15629,11 @@ msgstr "Vælg kolonne til visning:" msgid "Foreign key constraint %s has been dropped" msgstr "Begrænsning på fremmednøglen %s er blevet droppet" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Navnebegrænsning" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Tilføj kolonne" @@ -16114,9 +16160,9 @@ msgid "" "Percona documentation is at https://www.percona.com/software/documentation/" msgstr "" -"Dokumentation for Percona er på " -"https://www.percona.com/software/documentation/" +"Dokumentation for Percona er på https://www.percona.com/software/" +"documentation/" #: libraries/advisory_rules.txt:133 msgid "'percona' found in version_comment" diff --git a/po/de.po b/po/de.po index 11f8855cb4..f67323df17 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-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-20 20:22+0000\n" "Last-Translator: Niemand Jedermann \n" "Language-Team: German - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2329,28 +2336,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klicken zum Aus- bzw. Abwählen." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Doppelklicken, um den Spaltennamen zu kopieren." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Alles anzeigen" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2360,13 +2367,13 @@ msgstr "" "Kopieren und Löschen von Links können nach dem Speichern eventuell nicht " "funktionieren." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2374,105 +2381,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Ursprüngliche Länge" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "abbrechen" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abgebrochen" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Erfolg" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dateien hier ablegen" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Zuerst Datenbank auswählen" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Gehe zur Verknüpfung:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Spaltennamen kopieren." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Passwort generieren" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generieren" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mehr" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Panel anzeigen" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Panel ausblenden" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Zeige versteckte Navigationselemente." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Mit Hauptpanel verknüpfen" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Verknüpfung mit Hauptpanel aufheben" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2482,27 +2489,27 @@ msgstr "" "empfohlen. Die aktuelle Version ist %s, erschienen am %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", aktuelle stabile Version:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "auf dem neuesten Stand" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Erzeuge View" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Fehlerbericht senden" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Fehlerbericht senden" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2510,15 +2517,15 @@ msgstr "" "Es ist ein JavaScript Fehler aufgetreten. Möchten Sie einen Fehlerbericht " "senden?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Einstellungen für Berichte ändern" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Berichtdetails anzeigen" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2526,7 +2533,7 @@ msgstr "" "Ihr Export ist unvollständig, wegen eines niedrigen Ausführungszeit-Limits " "in PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2536,60 +2543,60 @@ msgstr "" "werden einige der Felder möglicherweise ignoriert, wegen der PHP-" "Konfiguration max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Einige Fehler wurden auf dem Server entdeckt!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Bitte schauen Sie am unteren Ende dieses Fensters." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Alles ignorieren" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Diese Abfrage erneut ausführen?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Möchten Sie dieses Lesezeichen wirklich löschen?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Beim Laden der SQL-Debug-Informationen ist ein Fehler aufgetreten." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s Abfragen %s mal in %s Sekunden ausgeführt." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s Argument(e) übergeben" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Argumente einblenden" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Argumente ausblenden" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Nötige Zeit:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2612,347 @@ msgstr "" "löschen. In Safari entstehen solche Probleme meistens, wenn das \"Private " "Surfen\" aktiviert ist." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Tabellen kopieren nach" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Tabellen-Präfix hinzufügen" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Tabellenprefix ändern" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabelle mit Prefix kopieren" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Vorher" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Nächster" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Heute" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Januar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "März" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dezember" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mrz" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dez" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Sonntag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Montag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Dienstag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Mittwoch" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Donnerstag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Freitag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Samstag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "So" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Mo" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Di" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mi" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Do" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Fr" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wo" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Stunde" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minute" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekunde" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Dieses Feld muss ausgefüllt werden" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Bitte korrigieren Sie dieses Feld" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Bitte geben Sie eine gültigen E-Mail-Adresse ein" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Bitte geben Sie eine gültige URL ein" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Bitte geben Sie ein gültiges Datum ein" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Bitte geben Sie ein gültiges Datum (ISO) ein" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Bitte geben Sie eine gültige Zahl ein" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Bitte geben Sie eine gültige Kreditkartennummer ein" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Bitte geben Sie nur Ziffern ein" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Bitte geben Sie denselben Wert nochmal ein" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Bitte nicht mehr als {0} Zeichen eingeben" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Bitte geben Sie mindestens {0} Zeichen ein" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Bitte geben Sie einen Wert zwischen {0} und {1} ein" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Bitte geben Sie einen Wert kleiner gleich {0} ein" -#: js/messages.php:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 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:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Bitte geben Sie einen gültige hexadezimale Eingabe ein" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3044,8 +3051,8 @@ msgstr "Erneut abfragen" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Datenbank" @@ -3854,7 +3861,7 @@ msgstr "Index %s wurde entfernt." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3914,8 +3921,8 @@ msgstr "Ansicht" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabelle" @@ -4276,39 +4283,39 @@ msgid "Unknown table status:" msgstr "Unbekannter Tabellenstatus:" # source != search / Source != Suche -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Quell-Datenbank `%s` nicht gefunden!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Ziel-Datenbank `%s` nicht gefunden!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Ungültige Datenbank:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Ungültiger Tabellenname:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fehler beim Umbenennen von Tabelle %1$s nach %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelle %1$s wurde in %2$s umbenannt." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Konnte die Darstellungs-Einstellungen der Tabelle nicht speichern!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4317,7 +4324,7 @@ msgstr "" "Bereinigen der Tabellen UI Einstellungen fehlgeschlagen (siehe " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4328,19 +4335,19 @@ msgstr "" "Änderungen werden nicht dauerhaft sein wenn Sie diese Seite aktualisieren. " "Bitte überprüfen Sie, ob die Struktur der Tabelle geändert wurde." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Der Name des Primärschlüssels muss \"PRIMARY\" lauten!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kann Index nicht in PRIMARY umbenennen!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Keine Indizes definiert!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11143,47 +11150,47 @@ msgstr "Formatiert den Text als JSON mit Syntaxhervorhebung." msgid "Formats text as XML with syntax highlighting." msgstr "Formatiert den Text als XML mit Syntaxhervorhebung." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Fehler: Verknüpfung existiert bereits." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Fremdschlüssel-Beziehung wurde hinzugefügt." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht hinzugefügt werden!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Fehler: Fehlender Index über Spalte(n)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Fehler: Beziehungsfunktionen wurde deaktiviert!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Interne Verknüpfung wurde hinzugefügt." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Fehler: Interne Verknüpfung konnte nicht hinzugefügt werden!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Fremdschlüssel-Beziehung wurde beseitigt." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fehler: Fremdschlüssel-Beziehung konnte nicht beseitigt werden!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Fehler: Interne Verknüpfung konnte nicht beseitigt werden!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Interne Verknüpfung wurde beseitigt." @@ -11306,11 +11313,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Erneut in phpMyAdmin anmelden um die neue Konfigurationsdatei zu laden." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "keine Beschreibung" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11320,7 +11327,7 @@ msgstr "" "anzulegen. Sie können zum „Operationen“-Tab einer beliebigen Datenbank " "gehen, um in dieser den phpMyAdmin-Konfigurationsspeicher einzurichten." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11329,7 +11336,7 @@ msgstr "" "Eine Datenbank mit Namen „phpmyadmin“ %sanlegen%s und dort die phpMyAdmin-" "Konfigurationsspeicher-Tabellen einrichten." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11337,7 +11344,7 @@ msgstr "" "%sErzeuge%s die PhpMyAdmin-Konfigurationsspeicherung in der aktuellen " "Datenbank." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Fehlende phpMyAdmin-Konfigurationsspeicher-Tabellen %sanlegen%s." @@ -12024,7 +12031,9 @@ msgid "routine" msgstr "Prozedur" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" "Sie haben nicht die erforderlichen Rechte, um eine neue Prozedur zu erstellen" @@ -12032,19 +12041,20 @@ msgstr "" #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Keine Prozedur mit dem Namen %1$s in der Datenbank %2$s gefunden" #: libraries/rte/rte_words.lib.php:43 @@ -12065,13 +12075,16 @@ msgid "trigger" msgstr "Trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" "Sie haben nicht die notwendigen Rechte um einen neuen Trigger zu erstellen" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Keine Trigger namens %1$s in der Datenbank %2$s gefunden" #: libraries/rte/rte_words.lib.php:57 @@ -12092,13 +12105,16 @@ msgid "event" msgstr "Ereignis" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" "Sie haben nicht die erforderlichen Rechte, um ein neues Ereignis zu erstellen" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Es wurde kein Ereignis mit dem Namen %1$s in Datenbank %2$s gefunden" #: libraries/rte/rte_words.lib.php:71 @@ -13957,7 +13973,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14058,7 +14074,7 @@ msgstr "Unerwarteter Statement-Anfang." msgid "Unrecognized statement type." msgstr "Unerkannte Statement-Typ." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Bisher wurde keine Transaktion gestartet." @@ -14079,6 +14095,12 @@ msgstr "Diese Art von Klausel wurde zuvor analysiert." msgid "Unrecognized keyword." msgstr "Unerkanntes Schlüsselwort." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Unerwarteter Statement-Anfang." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Der Name der Entität wurde erwartet." @@ -15570,31 +15592,38 @@ msgstr "Aktionen" msgid "Constraint properties" msgstr "Constrainteigenschaften" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Nur Spalten mit Index werden angezeigt. Sie können einen Index unten " "definieren." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Beschränkung für auswärtige Schlüssel" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Constraint hinzufügen" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interne Beziehungen" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Interne Beziehung" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15602,7 +15631,7 @@ msgstr "" "Eine interne Beziehung ist nicht notwendig, wenn eine entsprechende " "Fremdschlüssel-Beziehung existiert." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Anzuzeigende Spalte auswählen:" @@ -15611,11 +15640,11 @@ msgstr "Anzuzeigende Spalte auswählen:" msgid "Foreign key constraint %s has been dropped" msgstr "Die Fremdschlüssel-Beschränkung %s wurde aufgehoben" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Constraint-Name" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Spalte hinzufügen" diff --git a/po/el.po b/po/el.po index b898b1233d..d894b87a86 100644 --- a/po/el.po +++ b/po/el.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-25 10:17+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" @@ -63,11 +63,12 @@ msgstr "Σχόλια πίνακα:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -520,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Επιτεύχθηκε" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Απέτυχε" @@ -623,7 +624,7 @@ msgstr "Οι εντολές «DROP DATABASE» έχουν απενεργοποι msgid "Could not load the progress of the import." msgstr "Αδύνατη η φόρτωση της διαδικασίας της εισαγωγής." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -648,7 +649,7 @@ msgstr "" msgid "General settings" msgstr "Γενικές ρυθμίσεις" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1062,7 +1063,7 @@ msgstr "Πρέπει να προσθέσετε τουλάχιστον ένα π #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Προεπισκόπηση SQL" @@ -1527,7 +1528,7 @@ msgstr "Επεξήγηση προϊόντος" msgid "Status" msgstr "Κατάσταση" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1981,7 +1982,7 @@ msgid "Second step of normalization (2NF)" msgstr "Δεύτερο βήμα κανονικοποίησης (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Ολοκληρώθηκε" @@ -2060,7 +2061,7 @@ msgstr "Δεν έχετε επιλέξει εξαρτήσεις!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Αποθήκευση" @@ -2142,7 +2143,7 @@ msgstr "Επιλογή δύο διαφορετικών στηλών" msgid "Data point content" msgstr "Περιεχόμενο δείκτη δεδομένων" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2194,6 +2195,18 @@ msgstr "" "δώστε κλειδί σε αυτές τιμές άμεσα, αν το επιθυμείτε" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"Η MySQL αποδέχεται πρόσθετες τιμές που δεν είναι επιλέξιμες από την κύλιση, " +"δώστε κλειδί σε αυτές τιμές άμεσα, αν το επιθυμείτε" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2214,24 @@ msgstr "" "Δείχνει ότι έχετε κάνει αλλαγές σε αυτή τη σελίδα, θα ερωτηθείτε για " "επιβεβαίωση πριν εγκαταλείψετε τις αλλαγές" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Επιλέξτε αναφερθέν κλειδί" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Επιλέξτε Μη Διακριτό Κλειδί" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "Επιλέξτε το πρωτεύον κλειδί ή ένα μοναδικό κλειδί!" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "Επιλέξτε στήλη για εμφάνιση" -#: js/messages.php:539 +#: js/messages.php:545 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2226,76 +2239,76 @@ msgstr "" "Δεν αποθηκεύσατε τις αλλαγές στο προϊόν. Θα χαθούν αν δεν τις αποθηκεύσετε. " "Θέλετε να συνεχίσετε;" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Όνομα σελίδας" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Αποθήκευση σελίδας" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "Αποθήκευση σελίδας ως" -#: js/messages.php:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Άνοιγμα σελίδας" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Διαγραφή σελίδας" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Χωρίς τίτλο" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Επιλέξτε σελίδα για συνέχεια" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Εισάγετε ένα έγκυρο όνομα σελίδας" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "Θέλετε να αποθηκεύσετε τις αλλαγές στην τρέχουσα σελίδα;" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Η σελίδα διαγράφτηκε επιτυχώς" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Εξαγωγή σχεσιακού σχήματος" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Οι αλλαγές αποθηκεύτηκαν" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Προσθήκη επιλογής για τη στήλη «%s»." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d αντικείμενο(α) δημιουργήθηκε(αν)." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Αποστολή" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Πατήστε το escape για ακύρωση της επεξεργασίας." -#: js/messages.php:564 +#: js/messages.php:570 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2303,15 +2316,15 @@ msgstr "" "Έχετε επεξεργαστεί ορισμένα δεδομένα και δεν έχουν αποθηκευτεί. Θέλετε να " "αφήσετε τη σελίδα χωρίς αποθήκευση των δεδομένων;" -#: js/messages.php:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Σύρτε για ανακατανομή." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Πατήστε για ταξινόμηση των αποτελεσμάτων κατά αυτή τη στήλη." -#: js/messages.php:570 +#: js/messages.php:576 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2321,26 +2334,26 @@ msgstr "" "ASC/DESC.
- Control+Κλικ ή Alt+Κλικ (Για Mac: Shift+Option+Click) για " "απομάκρυνση της στήλης από τη δήλωση ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Πατήστε για εναλλαγή επισήμανσης." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Διπλό κλικ για αντιγραφή ονόματος στήλης." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Πατήστε το προς τα κάτω βέλος
για εναλλαγή της εμφάνισης στηλών." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Εμφάνιση όλων" -#: js/messages.php:581 +#: js/messages.php:587 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 +2362,12 @@ msgstr "" "την επεξεργασία και επιλογή καννάβου Επεξεργασία, Αντιγραφή και Διαγραφή " "ίσως να μη λειτουργούν μετά την αποθήκευση." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Εισάγετε ένα έγκυρο δεκαεξαδικό αριθμό. Έγκυροι χαρακτήρες είναι 0-9, A-F." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2362,103 +2375,103 @@ msgstr "" "Θέλετε πραγματικά να δείτε όλες τις εγγραφές; Για ένα μεγάλο πίνακα, αυτό " "ίσως φέρει δυσλειτουργία στον φυλλομετρητή σας." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Αρχικό μήκος" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "άκυρο" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ακυρωμένες συνδέσεις" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Επιτυχία" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Κατάσταση εισαγωγής" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ρίξτε αρχεία εδώ" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Επιλέξτε βάση δεδομένων πρώτα" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Εκτύπωση" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας με " "διπλό κλικ κατευθείαν σε αυτές." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Μπορείτε επίσης να επεξεργαστείτε τις περισσότερες τιμές
πατώντας " "κατευθείαν σε αυτές." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Μετάβαση στο σύνδεσμο:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Αντιγραφή ονόματος στήλης." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "Δεξί κλικ στο όνομα στήλης για αντιγραφή του στο πρόχειρο." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Δημιουργία κωδικού πρόσβασης" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Παραγωγή" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Περισσότερα" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Εμφάνιση πίνακα" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Απόκρυψη πίνακα" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Προβολή κρυφών αντικειμένων δέντρου πλοήγησης." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Σύνδεσμος με τον βασικό πίνακα" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Αποσύνδεση από τον βασικό πίνακα" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "Η αιτούμενη σελίδα δεν βρέθηκε στο ιστορικό, ίσως έληξε." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2468,27 +2481,27 @@ msgstr "" "εγκαταστήσετε. Η νεότερη έκδοση είναι η %s και δημοσιεύτηκε την %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", τελευταία έκδοση:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "ενημερωμένο" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Δημιουργία προβολής" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Αποστολή αναφορών σφάλματος" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Υποβολή αναφοράς σφάλματος" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2496,21 +2509,21 @@ msgstr "" "Ένα ανεπανόρθωτο σφάλμα έχει συμβεί. Θέλετε να στείλετε μια αναφορά " "σφάλματος;" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Αλλαγή ρυθμίσεων αναφοράς" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Εμφάνιση λεπτομερειών αναφοράς" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "Η εξαγωγή σας ήταν ανεπιτυχής, λόγω χαμηλού χρονικού ορίου στην PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2520,58 +2533,58 @@ msgstr "" "Κατά την υποβολή ορισμένα πεδία ίσως αγνοηθούν λόγω της ρύθμισης της PHP " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Ανιχνεύτηκαν ορισμένα σφάλματα στο διακομιστή!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Δείτε στο κάτω μέρος αυτού του παραθύρου." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Παράληψη Όλων" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Σύμφωνα με τις ρυθμίσεις σας, υποβάλλονται άμεσα, κάντε υπομονή." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Επανεκτέλεση αυτού του ερώτηματος ξανά;" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Θέλετε πραγματικά να διαγράψετε αυτό το σελιδοδείκτη;" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Κάποιο σφάλμα συνέβει κατά τη λήψη πληροφοριών αποσφαλμάτωσης SQL." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s ερωτήματα εκτελέστηκαν %s φορές σε %s δευτερόλεπτα." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s επιχείρημα(τα) πέρασαν" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Προβολή επιχειρημάτων" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Απόκρυψη επιχειρημάτων" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Χρόνος που παρήλθε:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2587,347 +2600,347 @@ msgstr "" "βοηθήσει. Στον Safari, τέτοιο πρόβλημα εμφανίζεται από την «Κατάσταση " "Ιδιωτικής Περιήγησης»." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Αντιγραφή πινάκων στη" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Προσθήκη προθέματος πίνακα" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Αντικατάσταση πίνακα με πρόθεμα" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Αντιγραφή πίνακα με πρόθεμα" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Προηγούμενο" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Επόμενο" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Σήμερα" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Ιανουαρίου" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Φεβρουαρίου" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Μαρτίου" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Απριλίου" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Μαΐου" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Ιουνίου" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Ιουλίου" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Αυγούστου" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Σεπτεμβρίου" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Οκτωβρίου" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Νοεμβρίου" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Δεκεμβρίου" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Ιαν" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Φεβ" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Μαρ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Απρ" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Μάη" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Ιουν" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Ιουλ" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Αυγ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Σεπ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Οκτ" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Νοε" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Δεκ" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Κυριακή" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Δευτέρα" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Τρίτη" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Τετάρτη" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Πέμπτη" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Παρασκευή" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Σάββατο" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Κυρ" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Δευ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Τρί" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Τετ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Πέμ" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Παρ" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Σάβ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Κυ" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Δε" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Τρ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Τε" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Πε" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Πα" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Σα" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "ημερολόγιο-μήνας-έτος" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "κανένα" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Ώρα" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Λεπτό" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Δευτερόλεπτο" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Αυτό το πεδίο είναι υποχρεωτικό" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Διορθώστε αυτό το πεδίο" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Εισάγετε μια έγκυρή ηλεκτρονική διεύθυνση" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Εισάγετε έναν έγκυρο URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Εισάγετε μια έγκυρη ημερομηνία" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Εισάγετε μια έγκυρη ημερομηνία (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Εισάγετε έναν έγκυρο αριθμό" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Εισάγετε έναν έγκυρο αριθμό πιστωτικής κάρτας" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Εισάγετε μόνο ψηφία" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Εισάγετε την ίδια τιμή ξανά" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Εισάγετε όχι περισσότερους από {0} χαρακτήρες" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Εισάγετε τουλάχιστον {0} χαρακτήρες" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Εισάγετε μια τιμή μήκους μεταξύ {0} και {1} χαρακτήρες" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Εισάγετε εισάγετε μια τιμή μεταξύ {0} και {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Εισάγετε μια τιμή μικρότερη ή ίση με {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Εισάγετε μια τιμή μεγαλύτερη ή ίση με {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Εισάγετε μια έγκυρη ημερομηνία ή ώρα" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Εισάγετε μια έγκυρη ΔΕΚΑΕΞΑΔΙΚΗ εισαγωγή" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3029,8 +3042,8 @@ msgstr "Επανερώτημα" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Βάση" @@ -3829,7 +3842,7 @@ msgstr "Το ευρετήριο %s έχει διαγραφεί." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3889,8 +3902,8 @@ msgstr "Προβολή" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Πίνακας" @@ -4254,39 +4267,39 @@ msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει msgid "Unknown table status:" msgstr "Άγνωστη κατάσταση πίνακα:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Η Βάση δεδομένων προέλευσης «%s» δεν βρέθηκε!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Η βάση δεδομένων προορισμού «%s» δεν βρέθηκε!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Μη έγκυρη βάση δεδομένων:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Μη έγκυρο όνομα πίνακα:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Αποτυχία μετονομασίας του πίνακα %1$s σε %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Ο πίνακας %1$s μετονομάσθηκε σε %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Αδύνατη η αποθήκευση του πίνακα ρυθμίσεων UI!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4295,7 +4308,7 @@ msgstr "" "Αδύνατη η εκκαθάριση του πίνακα προτιμήσεων του περιβάλλοντος εργασίας " "(δείτε το $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4306,19 +4319,19 @@ msgstr "" "παραμείνουν μετά την ανανέωση της σελίδας. Ελέξτε αν η δομή πίνακα έχει " "αλλαχτεί." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Το όνομα του πρωτεύοντος κλειδιού πρέπει να είναι \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Η μετατροπή του ευρετηρίου σε PRIMARY δεν είναι εφικτή!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Δεν ορίστηκαν τα στοιχεία του ευρετηρίου!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11105,47 +11118,47 @@ msgstr "Μορφοποιεί το κείμενο ως JSON με επισήμαν msgid "Formats text as XML with syntax highlighting." msgstr "Μορφοποιεί το κείμενο ως XML με επισήμανση της σύνταξης." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Σφάλμα: η συσχέτιση υπαρχει ήδη." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Έχει προστεθεί η συσχέτιση FOREIGN KEY." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η συσχέτιση FOREIGN KEY!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Σφάλμα: Ανύπαρκτο ευρετήριο στη(ις) στήλη(ες)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Σφάλμα: Τα χαρακτηριστικά συσχέτισης είναι απεπεργοποιημένα!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Η εσωτερική συσχέτιση έχει προστεθεί." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Σφάλμα: Δεν μπόρεσε να προστεθεί η εσωτερική συσχέτιση!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Έχει απομακρυνθεί η συσχέτιση FOREIGN KEY." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η συσχέτιση FOREIGN KEY!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Σφάλμα: Δεν μπόρεσε να απομακρυνθεί η εσωτερική συσχέτιση!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Η εσωτερική συσχέτιση έχει απομακρυνθεί." @@ -11270,11 +11283,11 @@ msgstr "" "Επανασυνδεθείτε στο phpMyAdmin για να φορτωθεί το ενημερωμένο αρχείο " "ρυθμίσεων." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "χωρίς περιγραφή" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11285,7 +11298,7 @@ msgstr "" "οποιασδήποτε βάσης δεδομένων για να ορίσετε την αποθήκευση ρυθμίσεων του " "phpMyAdmin εκεί." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11294,7 +11307,7 @@ msgstr "" "%sΔημιουργία%s μιας βάσης δεδομένων με το όνομα «phpmyadmin» και εγκατάσταση " "της αποθήκευσης ρυθμίσεων του phpMyAdmin εκεί." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11302,7 +11315,7 @@ msgstr "" "%sΔημιουργία%s του τρέχοντος χώρου αποθήκευσης ρυθμίσεων του phpMyAdmin στην " "τρέχουσα βάση δεδομένων." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11986,30 +11999,39 @@ msgid "routine" msgstr "ρουτίνα" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Δεν έχετε τα απαραίτητα δικαιώματα για να δημιουργήσετε μια ρουτίνα" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "Καμιά ρουτίνα με το όνομα %1$s δεν βρέθηκε στη βάση δεδομένων %2$s. Ίσως δεν " "έχετε τα απαραίτητα δικαιώματα για επεξεργασία της ρουτίνας" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Καμιά ρουτίνα με το όνομα %1$s δεν βρέθηκε στη βάση δεδομένων %2$s. Ίσως δεν " "έχετε τα απαραίτητα δικαιώματα για προβολή/εξάγωγή της ρουτίνας" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Καμιά ρουτίνα με την ονομασία %1$s δεν βρέθηκε στη βάση δεδομένων %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12030,12 +12052,15 @@ msgid "trigger" msgstr "ενέργεια" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Δεν έχετε τα απαραίτητα δικαιώματα για να δημιουργήσετε μια ενέργεια" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" "Καμιά ενέργεια με την ονομασία %1$s δεν βρέθηκε στη βάση δεδομένων %2$s" @@ -12057,12 +12082,15 @@ msgid "event" msgstr "συμβάν" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Δεν έχετε τα απαραίτητα δικαιώματα για να δημιουργήσετε ένα συμβάν" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Κανένα συμβάν με ονομασία %1$s δεν βρέθηκε στη βάση δεδομένων %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13926,8 +13954,12 @@ msgid "Unexpected end of CASE expression" msgstr "Μη αναμενόμενο τέλος της έκφρασης CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Αναμενόταν ένα όνομα συμβόλου! Μια δεσμευμένη λέξη-κλειδί δεν μπορεί να " @@ -14029,7 +14061,7 @@ msgstr "Μη αναμενόμενη έναρξη δήλωσης." msgid "Unrecognized statement type." msgstr "Μη αναγνωρισμένος τύπος δήλωσης." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Καμιά συναλλαγή δεν ξεκίνησε προηγουμένως." @@ -14050,6 +14082,12 @@ msgstr "Αυτός ο τύπος ρύτρας έχει αναλυθεί προη msgid "Unrecognized keyword." msgstr "Μη αναγνωρισμένη λέξη κλειδί." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Μη αναμενόμενη έναρξη δήλωσης." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Αναμενόταν το όνομα της οντότητας." @@ -15541,31 +15579,38 @@ msgstr "Ενέργειες" msgid "Constraint properties" msgstr "Ιδιότητες περιορισμών" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Μόνο στήλες με ευρετήριο θα εμφανίζονται. Μπορείτε να ορίσετε ευρετήριο " "παρακάτω." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Όριο μη διακριτού κλειδιού" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+Προσθήκη περιορισμού" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Εσωτερικές συσχετίσεις" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Εσωτερική συσχέτιση" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15573,7 +15618,7 @@ msgstr "" "Μια εσωτερική συσχέτιση δεν είναι απαραίτητη όταν υπάρχει μια αντίστοιχη " "συσχέτιση FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Επιλέξτε στήλη για εμφάνιση:" @@ -15582,11 +15627,11 @@ msgstr "Επιλέξτε στήλη για εμφάνιση:" msgid "Foreign key constraint %s has been dropped" msgstr "Ο περιορισμός ξένου κλειδιού %s έχει διαγραφεί" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Όνομα μεταβλητής" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Προσθήκη στήλης" diff --git a/po/en_GB.po b/po/en_GB.po index 4f3866ff5b..264f2b3548 100644 --- a/po/en_GB.po +++ b/po/en_GB.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:38+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: English (United Kingdom) - Control+Click to remove column from ORDER BY clause" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Click to mark/unmark." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Double-click to copy column name." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Show all" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2453,128 +2460,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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Original string" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Cancel" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Aborted" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import defaults" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Log file threshold" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Go to link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copy column name." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generate password" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generate" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "More" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Show Panel" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Hide Panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Show hidden navigation tree items." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "Customise main panel" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2584,31 +2591,31 @@ msgstr "" "upgrading. The newest version is %s, released on %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", latest stable version:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "up to date" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Create view" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Send error reports" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Submit Error Report" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2616,19 +2623,19 @@ msgstr "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Change Report Settings" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Show Report Details" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2636,7 +2643,7 @@ msgstr "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2645,69 +2652,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignore" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Show this query here again" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Executed queries" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Table comments" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Hide search results" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2716,385 +2723,385 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Add table prefix:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Replace table prefix" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copy table with prefix" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Prev" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Next" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Today" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "January" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "February" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "March" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "May" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "June" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "July" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "October" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Sunday" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Monday" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Tuesday" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Wednesday" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Thursday" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Friday" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Saturday" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Sun" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Mon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Tue" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Wed" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Thu" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Fri" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sat" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Mo" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Tu" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "We" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Th" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hour" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minute" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Second" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Use text field" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "Please enter a valid number!" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Please enter a valid number!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "Please enter a valid number!" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "Please enter a valid number!" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Please enter a valid number!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Please enter a valid number!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Please enter a valid length!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "Please enter a valid number!" -#: js/messages.php:908 +#: js/messages.php:914 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter no more than {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter correct captcha!" msgid "Please enter at least {0} characters" msgstr "Please enter correct captcha!" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "Please enter a valid number!" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Please enter a valid number!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3192,8 +3199,8 @@ msgstr "subquery" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -4059,7 +4066,7 @@ msgstr "Index %s has been dropped." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4117,8 +4124,8 @@ msgstr "View" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Table" @@ -4483,39 +4490,39 @@ msgstr "This MySQL server does not support the %s storage engine." msgid "Unknown table status:" msgstr "Unknown table status:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Source database `%s` was not found!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Target database `%s` was not found!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Invalid database:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Invalid table name:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Failed to rename table %1$s to %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Table %1$s has been renamed to %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Could not save table UI preferences!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4524,7 +4531,7 @@ msgstr "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4535,19 +4542,19 @@ msgstr "" "after you refresh this page. Please check if the table structure has been " "changed." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "The name of the primary key must be \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Can't rename index to PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "No index parts defined!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Error creating foreign key on %1$s (check data types)" @@ -11473,57 +11480,57 @@ msgstr "Formats text as SQL query with syntax highlighting." msgid "Formats text as XML with syntax highlighting." msgstr "Formats text as SQL query with syntax highlighting." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Error: relation already exists." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relation has been added." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Error: Relational features are disabled!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Internal relation has been added." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY relation has been added." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Error: Relation could not be added!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11660,18 +11667,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Re-login to phpMyAdmin to load the updated configuration file." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "no description" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11679,14 +11686,14 @@ msgid "" "configuration storage there." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Missing phpMyAdmin configuration storage tables" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12369,26 +12376,29 @@ msgid "routine" msgstr "routine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "You do not have the necessary privileges to create a routine" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "No routine with name %1$s found in database %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12409,12 +12419,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "You do not have the necessary privileges to create a trigger" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "No trigger with name %1$s found in database %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12435,12 +12448,15 @@ msgid "event" msgstr "event" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "You do not have the necessary privileges to create an event" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "No event with name %1$s found in database %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14287,7 +14303,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14409,7 +14425,7 @@ msgstr "At Beginning of Table" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14432,6 +14448,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "At Beginning of Table" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16043,31 +16065,38 @@ msgstr "Action" msgid "Constraint properties" msgstr "Constraints for table" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Foreign key constraint" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Add constraints" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Internal relation" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16075,7 +16104,7 @@ msgstr "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Choose column to display:" @@ -16085,11 +16114,11 @@ msgstr "Choose column to display:" msgid "Foreign key constraint %s has been dropped" msgstr "Foreign key constraint" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Constraint name" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/eo.po b/po/eo.po index bf87f9ee9b..ee20b60012 100644 --- a/po/eo.po +++ b/po/eo.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-05-03 00:35+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Esperanto - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "nuligi" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generi pasvorton" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generi" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2318,105 +2325,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2432,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "hodiaŭ" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januaro" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februaro" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "marto" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "aprilo" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "majo" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "junio" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "julio" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "aŭgusto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "septembro" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktobro" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "novembro" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "decembro" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aŭg" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "dimanĉo" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "lundo" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "mardo" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "merkredo" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "ĵaŭdo" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "vendredo" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "sabato" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "dim" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "ĵaŭ" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "ven" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "me" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "ĵa" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "ve" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "neniu" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Horo" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekundo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2859,8 +2866,8 @@ msgstr "Repeti" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Datumbazo" @@ -3647,7 +3654,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3703,8 +3710,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabelo" @@ -4064,46 +4071,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4111,19 +4118,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10244,47 +10251,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10400,31 +10407,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11066,26 +11073,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11106,12 +11113,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11132,12 +11139,12 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12748,7 +12755,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12848,7 +12855,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12869,6 +12876,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14298,35 +14309,42 @@ msgstr "Agoj" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Aldoni limigon" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14335,11 +14353,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Aldoni kolumnon" diff --git a/po/es.po b/po/es.po index 8a251a13d6..e5af3cfe89 100644 --- a/po/es.po +++ b/po/es.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-07-27 00:30+0000\n" "Last-Translator: jorge jansen abreu \n" "Language-Team: Spanish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2310,28 +2317,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Pulsar para marcar/desmarcar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Haga doble click para copiar el nombre de la columna." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2340,13 +2347,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2354,106 +2361,106 @@ msgstr "" "¿Realmente desea ver todas las filas? Una tabla grande podría afectar el " "funcionamiento del navegador." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Longitud original" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "cancelar" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Éxito" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Estado de la importación" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Suelte aquí los archivos" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Seleccionar base de datos primero" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Ir al enlace:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copie el nombre de la columna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generar contraseña" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generar" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Más" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Mostrar panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Ocultar panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostrar los elementos escondidos del árbol de navegación." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Enlace al panel principal" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Deshacer enlace en el panel principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2463,42 +2470,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:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", versión estable más reciente:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "actualizada" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Crear vista" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Enviar informe de error" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Enviar informe de error" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Cambiar configuraciones del informe" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Mostrar detalles del informe" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2506,7 +2513,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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2516,59 +2523,59 @@ msgstr "" "enviarlo se podrían ignorar algunos campos debido a la configuración " "«max_input_vars» de PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "¡Se detectaron algunos errores en el servidor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Revise el pie de esta ventana." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorar todos" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "¿Ejecutar esta consulta nuevamente?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "¿Realmente desea eliminar este favorito?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Ocurrió un error al obtener información de depuración SQL." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas ejecutadas %s veces en %s segundos." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) correcto(s)" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Mostrar argumentos" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Ocultar argumentos" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tiempo necesario:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2584,347 +2591,347 @@ msgstr "" "Safari, este problema es causado comúnmente por la \"Navegación en modo " "privado\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copiar tablas a" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Agregar prefijo a la tabla" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Reemplazar tabla con el prefijo" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabla con prefijo" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Siguiente" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hoy" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Enero" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Febrero" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Marzo" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Abril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mayo" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Junio" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Julio" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agosto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Septiembre" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Octubre" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Noviembre" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Diciembre" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Ene" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dic" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Lunes" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Miércoles" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Jueves" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Viernes" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Jue" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Vie" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Ju" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Segundo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Este campo es requerido" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Corrige este campo" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Ingrese un correo electrónico válido" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Ingrese una URL válida" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Ingrese una fecha válida" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Ingrese una fecha ( ISO ) válida" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Ingrese un número válido" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Ingrese un número de tarjeta de crédito valido" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Ingrese solo dígitos" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Ingrese el mismo valor de nuevo" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Ingrese no más de {0} caracteres" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Ingrese al menos {0} caracteres" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Ingrese un valor entre {0} y {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Ingrese un valor menor o igual a {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Ingrese un valor mayor o igual a {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Ingrese una fecha u hora válida" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Ingrese una entrada HEX válida" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3024,8 +3031,8 @@ msgstr "Reconsultar" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de datos" @@ -3828,7 +3835,7 @@ msgstr "El índice %s ha sido eliminado." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3888,8 +3895,8 @@ msgstr "Visualizar" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabla" @@ -4253,39 +4260,39 @@ msgstr "" msgid "Unknown table status:" msgstr "Estado de tabla desconocido:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "¡No se encontró la base de datos de origen «%s»!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "¡No se encontró la base de datos de destino «%s»!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "La base de datos no es válida:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "El nombre de la tabla no es válido:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "¡No se pudo cambiar el nombre de la tabla %1$s a %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabla %1$s ahora se llama %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "¡No se pudieron guardar las preferencias de interfaz!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4294,7 +4301,7 @@ msgstr "" "Falló la limpieza de las preferencia de interfaz de tablas (ver " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4305,19 +4312,19 @@ msgstr "" "no serán persistentes luego de actualizar esta página. Revise si cambió la " "estructura de la tabla." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "¡El nombre de la clave primaria tiene que ser «PRIMARY»!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "¡No se puede cambiar el nombre del índice a PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "No se han definido las partes del índice!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11142,47 +11149,47 @@ msgstr "Formatea el texto como una consulta SQL y resalta la sintaxis." msgid "Formats text as XML with syntax highlighting." msgstr "Formatea el texto como XML y resalta la sintaxis." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Error: la relación ya existe." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Se añadió una relación CLAVE FORÁNEA." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Error: ¡no se pudo crear la clave ajena!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Error: Índice de columna(s) no encontrado." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Error: ¡Las funcionalidades relacionales están desactivadas!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Se añadió la relación interna." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Error: ¡no se añadió la relación interna!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Clave ajena eliminada." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Error: ¡no se pudo borrar la clave ajena!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Error: ¡no se pudo borrar la relación interna!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Se ha eliminado la relación interna." @@ -11305,11 +11312,11 @@ msgstr "" "Inicie sesión en phpMyAdmin nuevamente para cargar el archivo de " "configuración actualizado." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Sin descripción" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11319,7 +11326,7 @@ msgstr "" "'phpmyadmin'. Puede ir a la pestaña de 'Operaciones' de cualquier base de " "datos para configurar el almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11328,7 +11335,7 @@ msgstr "" "%sCree%s una base de datos llamada 'phpmyadmin' y configure el " "almacenamiento de configuración en phpMyAdmin." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11336,7 +11343,7 @@ msgstr "" "%sCrear%s las tablas de almacenamiento de configuración de phpMyAdmin en la " "base de datos actual." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12016,26 +12023,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "No posee los privilegios necesarios para crear una rutina" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12056,12 +12066,15 @@ msgid "trigger" msgstr "disparador" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "No posee los privilegios necesarios para crear un disparador" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "No se encontró disparador con nombre %1$s en la base de datos %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12082,12 +12095,15 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "No posee los privilegios necesarios para crear un evento" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "No se encontró evento con nombre %1$s en la base de datos %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13944,7 +13960,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14045,7 +14061,7 @@ msgstr "Comienzo inesperado de declaración." msgid "Unrecognized statement type." msgstr "Tipo de declaración desconocida." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Ninguna operación se inició anteriormente." @@ -14066,6 +14082,12 @@ msgstr "Este tipo de cláusula se analizó previamente." msgid "Unrecognized keyword." msgstr "Palabra clave no reconocida." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Comienzo inesperado de declaración." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Se esperaba el nombre de la entidad." @@ -15571,29 +15593,36 @@ msgstr "Acciones" msgid "Constraint properties" msgstr "Propiedades de la restricción" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "Sólo se mostrarán columnas con índices. Abajo puede definir un índice." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Restricción de clave foránea" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Añadir restricción" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relaciones internas" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15601,7 +15630,7 @@ msgstr "" "No es necesaria una relación interna cuando existe una relación CLAVE " "FORÁNEA correspondiente." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Elegir la columna a mostrar:" @@ -15610,11 +15639,11 @@ msgstr "Elegir la columna a mostrar:" msgid "Foreign key constraint %s has been dropped" msgstr "Se eliminó la restricción de clave foránea «%s»" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Nombre de la restricción" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Añadir columna" diff --git a/po/et.po b/po/et.po index d717414223..19e7ff1ec5 100644 --- a/po/et.po +++ b/po/et.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-08-17 10:25+0000\n" "Last-Translator: Kristjan Räts \n" "Language-Team: Estonian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2290,26 +2297,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klõpsa valimiseks/mittevalimiseks." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Veeru nime kopeerimiseks tee sellel topeltklõps." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Veeru nähtavuse muutmiseks
vajuta alla suunatud noolele." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Näita kõiki" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2318,12 +2325,12 @@ msgstr "" "märkeruutudega, muutmisega, kopeerimisega ja kustutamisega seotud " "funktsionaalsus ei pruugi pärast salvestamist toimida." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2331,100 +2338,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Algne pikkus" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "katkesta" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Katkestatud" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Õnnestus" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Impordi olek" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Kukuta failid siia" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Vali esmalt andmebaas" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Mine lingile:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopeeri veeru nimi." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "Veeru nime kopeerimiseks lõikelauale paremklõpsa sellel." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Genereeri parool" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genereeri" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Rohkem" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Paneeli kuvamine" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Peida paneel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Kuva peidetud navigeerimispaneeli elemendid." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lingi peapaneeli" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Kustuta link peapaneeli" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2434,41 +2441,41 @@ msgstr "" "Uusim versioon on %s, välja antud %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", viimane stabiilne versioon:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "ajakohane" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Loo vaade" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Saada vearaport" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Saada vearaport" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Muuda raporti sätteid" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Kuva raporti detailid" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2476,7 +2483,7 @@ msgstr "" "Su eksport on mittetäielik, sest PHP skripti töötamiseks lubatud aeg on " "liiga väike!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2485,58 +2492,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Server tuvastas mõned vead!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Palun vaata selle akna alumisse serva." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignoreeri kõiki" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Palun oota, sinu sätteid saadetakse hetkel." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Kas käivitada see päring uuesti?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Kas sa soovid tõesti kustutada selle järjehoidja?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "SQL silumisinfo hankimisel esines vigu." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s päringut käivitati %s korda %s sekundiga." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "edastati %s argument(i)" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Kuva argumendid" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Peida argumendid" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Aega kulus:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2552,347 +2559,347 @@ msgstr "" "kustutada \"Veebisaitide lokaalsed andmed\". Safaris põhjustab seda üsna " "tihti privaatrežiim." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopeeri tabelid kohta" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Lisa tabeli eesliide" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Asenda tabel eesliitega" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopeeri tabel koos eesliitega" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Eelmine" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Järgmine" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Täna" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Jaanuar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Veebruar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Märts" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Aprill" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juuni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juuli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktoober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Detsember" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jaan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Veebr" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Märts" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Aprill" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Juuni" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Juuli" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dets" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Pühapäev" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Esmaspäev" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Teisipäev" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Kolmapäev" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Neljapäev" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Reede" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Laupäev" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Püh" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Esm" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Tei" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Kol" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Nel" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ree" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Lau" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "E" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "K" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "N" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "R" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "L" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Näd" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalender-kuu-aasta" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "puudub" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Tund" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekund" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "See väli on kohustuslik" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Palun paranda see väli" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Palun sisesta korrektne e-posti aadress" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Palun sisesta korrektne URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Palun sisesta korrektne kuupäev" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Palun sisesta korrektne kuupäev (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Palun sisesta korrektne number" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Palun sisesta korrektne krediitkaardi number" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Palun sisesta ainult numbrid" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Palun sisesta sama väärtus uuesti" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Palun sisesta kuni {0} märki" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Palun sisesta vähemalt {0} märki" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Palun sisesta väärtus vahemikust {0} kuni {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Palun sisesta korrektne kuupäev või kellaaeg" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Palun sisesta korrektne 16-nd väärtus" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2988,8 +2995,8 @@ msgstr "Korduspäring" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Andmebaas" @@ -3782,7 +3789,7 @@ msgstr "%s indeks on kustutatud." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3841,8 +3848,8 @@ msgstr "Vaade" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4202,39 +4209,39 @@ msgstr "See MySQL server ei toeta %s varundusmootorit." msgid "Unknown table status:" msgstr "Tabeli olek tundmatu:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähteandmebaasi `%s` ei leitud!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Sihtandmebaasi `%s` ei leitud!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Vigane andmebaas:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Vigane tabeli nimi:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Tabeli %1$s ümbernimetamine %2$s'ks ebaõnnestus!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tabeli uueks nimeks sai %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Tabeli kasutajaliidese eelistusi ei saanud salvestada!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4243,7 +4250,7 @@ msgstr "" "Tabeli UI eelistuste puhastamine ebaõnnestus (vaata $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4253,19 +4260,19 @@ msgstr "" "Ei saanud salvestada UI muudatust \"%s\". Muudatused ei säili, kui " "värskendad seda lehte. Palun kontrolli, kas tabeli struktuuri on muudetud." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primaarvõtme nimi peab olema \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Ei saa muuta indeksi nimeks PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Indeksi osasid pole defineeritud!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Viga võõrvõtme loomisel kohas %1$s (kontrolli andmete tüüpe)" @@ -10896,47 +10903,47 @@ msgstr "Vormindab teksti süntaksi esiletõstuga JSON objektiks." msgid "Formats text as XML with syntax highlighting." msgstr "Vormindab teksti süntaksi esiletõstuga XML failiks." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Viga: seos on juba olemas." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY seos on lisatud." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Viga: välisvõtme (FOREIGN KEY) seose lisamine nurjus!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Viga: veeru(de)l puuduv(ad) indeks(id)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Viga: Seoste funksionaalsusega seonduv on keelatud!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Sisemine seos on loodud." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Viga: Sisemise seose lisamine nurjus!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Välisvõtme (FOREIGN KEY) seos on kustutatud." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Viga: Välisvõtme (FOREIGN KEY) seose kustutamine nurjus!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Viga: Sisemise seose kustutamine nurjus!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Sisemine seos on kustutatud." @@ -11055,11 +11062,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Uuendatud seadistuse faili laadimiseks logi phpMyAdmini uuesti sisse." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "kirjeldus puudub" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11069,7 +11076,7 @@ msgstr "" "suvalise andmebaasi kaardile 'Operatsioonid' ja määrata phpMyAdmini " "häälestuse salvestamine sinna." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11078,14 +11085,14 @@ msgstr "" "%sLoo%s andmebaas 'phpmyadmin' ja häälesta phpMyAdmini seadistuse " "salvestamine sinna." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sLoo%s phpMyAdmini seadistuse salvestuse tabelid aktiivses andmebaasis." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sLoo%s puuduvad phpMyAdmini seadistuse salvestuse tabelid." @@ -11755,26 +11762,29 @@ msgid "routine" msgstr "funktsioon" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Sul pole funktsiooni loomiseks piisavalt õigusi" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "%2$s andmebaasist ei leitud funktsiooni nimega %1$s" #: libraries/rte/rte_words.lib.php:43 @@ -11795,12 +11805,15 @@ msgid "trigger" msgstr "päästik" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Sul pole päästiku loomiseks piisavalt õigusi" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "%2$s andmebaasist ei leitud päästikut nimega %1$s" #: libraries/rte/rte_words.lib.php:57 @@ -11821,12 +11834,15 @@ msgid "event" msgstr "sündmus" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Sul pole sündmuse loomiseks piisavalt õigusi" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "%2$s andmebaasist ei leitud sündmust nimega %1$s" #: libraries/rte/rte_words.lib.php:71 @@ -13613,7 +13629,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13714,7 +13730,7 @@ msgstr "Ootamatu lause algus." msgid "Unrecognized statement type." msgstr "Tundmatut tüüpi lause." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Transaktsiooni ei olnud eelnevalt alustatud." @@ -13735,6 +13751,12 @@ msgstr "Sellist tüüpi klausel parsiti eelnevalt." msgid "Unrecognized keyword." msgstr "Tundmatu võtmesõna." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Ootamatu lause algus." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Oodati olemi nime." @@ -15218,37 +15240,44 @@ msgstr "Tegevused" msgid "Constraint properties" msgstr "Piirangud omadustele" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Kuvatakse ainult indeksiga veerud. Sa võid defineerida indeksi allpool." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Võõrvõtme piirang" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Lisa piirang" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Sisesed seosed" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Sisemine seos" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Sisemine seos on mittevajalik, kui vastav FOREIGN KEY seos on juba olemas." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Vali veerg, mida näidata:" @@ -15257,11 +15286,11 @@ msgstr "Vali veerg, mida näidata:" msgid "Foreign key constraint %s has been dropped" msgstr "Välisvõtme piirang %s on kustutatud" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Piirangu nimi" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Lisa veerg" diff --git a/po/eu.po b/po/eu.po index a04aaf8e44..ce36342095 100644 --- a/po/eu.po +++ b/po/eu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:26+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Basque - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Zutabe izenak" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Dena erakutsi" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Lerro kateak" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Deuseztatua" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Fitxategiak inportatu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Taulak hautatu" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Datu-baserik ez" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Zutabe izenak" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Pasahitza aldatu" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 #, fuzzy msgid "Generate" msgstr "Egilea:" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Astel" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Dena erakutsi" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indizeak" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sareta erakutsi" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Datu-basea esportatzeko aukerak" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2629,121 +2636,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Datu-baserik ez" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Zerbitzariaren bertsioa" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Zerbitzariaren hautaketa" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Erlazioen ezaaugarri orokorrak" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Taulak erakutsi" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ezikusi" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Kontsulta hau hemen berriz erakutsi" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL kontsulta" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Taularen iruzkinak" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL kontsulta" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2752,36 +2759,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Datu-basea kopiatu" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Taularen aurrizkia aldatu" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Taula aurrizkiarekin kopiatu" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Aurrekoa" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2789,96 +2796,96 @@ msgid "Next" msgstr "Hurrengoa" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Gutira" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarioa " -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Api" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Eka" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Uzt" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Abu" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Urr" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Urt" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Ots" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Api" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2886,78 +2893,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Eka" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Uzt" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Abu" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Ira" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Urr" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Aza" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Abe" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Iga" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Astel" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Astea" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Osti" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2965,199 +2972,199 @@ msgid "Sun" msgstr "Iga" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Astel" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Astea" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Astez" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Oste" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Osti" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Lar" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Iga" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Astel" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Astea" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Astez" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Oste" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Osti" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Lar" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Batez" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lanean" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "segunduko" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Testu-eremua erabili" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Datu-base bat hautatu mesedez" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Aukeratu editatzeko orria mesedez" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3253,8 +3260,8 @@ msgstr "kontsultan" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Datu-basea" @@ -4165,7 +4172,7 @@ msgstr "%s indizea ezabatu da." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4221,8 +4228,8 @@ msgstr "Ikusipegia" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Taula" @@ -4615,50 +4622,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Taulak erakutsi" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Datu-basean bilatu" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Datu-baserik ez" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Taulen barnean:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Zerbitzariaren bertsioa" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%s taula %s-(e)ra berrizendatua izan da" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4666,19 +4673,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Lehen mailako gakoaren izenak behar du izan \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Ezinezkoa indizearen izena ¡PRIMARY! berrizendatzea" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Ez da indiziaren zatiak definitu!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11418,60 +11425,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Aldaketak gorde dira" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Barne-erlazioak" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Aldaketak gorde dira" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Ezinezkoa fitxategia irakurtzea" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Barne-erlazioak" @@ -11606,31 +11613,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Deskribapenik ez" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12336,27 +12343,27 @@ msgstr "Gehitu %s zutabe" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Ez da taularik aurkitu datu-basean." #: libraries/rte/rte_words.lib.php:43 @@ -12381,13 +12388,13 @@ msgstr "Erabiltzaile berria gehitu" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Ez da taularik aurkitu datu-basean." #: libraries/rte/rte_words.lib.php:57 @@ -12412,13 +12419,13 @@ msgstr "Bidalita" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Ez daukazu baimen nahikorik hemen orain egoteko!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Ez da taularik aurkitu datu-basean." #: libraries/rte/rte_words.lib.php:71 @@ -14195,7 +14202,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14307,7 +14314,7 @@ msgstr "Taularen hasieran" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14328,6 +14335,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Taularen hasieran" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15997,39 +16010,46 @@ msgstr "Ekintzak" msgid "Constraint properties" msgstr "Taularentzako murrizketak" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Murrizketak gehitu" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Barne-erlazioak" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Barne-erlazioak" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16041,13 +16061,13 @@ msgstr "Aukeratu erakutsi beharreko eremua" msgid "Foreign key constraint %s has been dropped" msgstr "Murrizketak gehitu" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Taularentzako murrizketak" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/fa.po b/po/fa.po index 30e58d7980..077a9312c0 100644 --- a/po/fa.po +++ b/po/fa.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-11-21 11:45+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Persian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "برای علامتگذاری / برداشتن علامت اینجا را کلبک کن" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "نام ستونها" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "نمايش همه" -#: js/messages.php:581 +#: js/messages.php:587 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,60 +2478,60 @@ msgstr "" "این جدول هیچ مقدار کلیدی ندارد. امکانات ویرایش جدولی، چک باکس ها ، ویرایش ، " "کپی و حذف ممکن است کار نکنند." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "موقعیت اصلی" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "لغو کردن" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "وارد کردن فایل ها" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Select Tables" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چاپ" -#: js/messages.php:609 +#: js/messages.php:615 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2532,7 +2539,7 @@ msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:614 +#: js/messages.php:620 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2540,70 +2547,70 @@ msgid "You can also edit most values
by clicking directly on them." msgstr "" "شما همچنین می توانید بیشتر ستون ها را
با کلیک روی آنها ویرایش کنید." -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "به لینک بروید" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "نام ستونها" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "تغيير اسم رمز" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "توليد‌ کن" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "بیشتر" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "نمايش همه" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "مخفی کردن فهرست ها" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show hint" msgid "Show hidden navigation tree items." msgstr "Show grid" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize text input fields" msgid "Unlink from main panel" msgstr "سفارشی کردن فیلدهای ورودی متن" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2613,123 +2620,123 @@ msgstr "" "نسخه %s و در %s بیرون آمده است." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "نسخه قبلی:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "به روز" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "نسخه سرور" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "پورت سرور" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "پورت سرور" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "تغيير تنظیمات" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "نمايش جدولها" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "در نظر نگرفتن" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "نمايش دوباره اين پرس و جو در اينجا" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "آيا مطمئن هستيد " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "توضيحات جدول" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "مخفی کردن نتایج جستجو" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,34 +2745,34 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کپی کردن پابگاه داده به" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "جایگزینی پیشوند جدول" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "کپی کردن جدول با پیشوند" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "قبل" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2773,350 +2780,350 @@ msgid "Next" msgstr "بعد" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "امروز" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "ژانویه" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "فوریه" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "مارس" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "آوريل" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "مي" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "ژوئن" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "جولاي" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "آگوست" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "سپتامبر" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "اكتبر" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "نوامبر" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "دسامبر" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ژانويه" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "فوريه" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "مارس" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "آوريل" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "مي" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ژوئن" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "جولاي" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "آگوست" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "سپتامبر" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "اكتبر" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "نوامبر" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "دسامبر" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "يكشنبه" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "دوشنبه" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "سه‌شنبه" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "چهارشنبه" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "پنجشنبه" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "جمعه" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "شنبه" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "يكشنبه" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "دوشنبه" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "سه‌شنبه" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "چهارشنبه" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "پنج‌شنبه" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "جمعه" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "شنبه" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "يكشنبه" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "دوشنبه" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "سه‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "چهارشنبه" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "پنج‌شنبه" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "جمعه" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "شنبه" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "هفته" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "تقویم-ماه-سال" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "هیچ" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "ساعت" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "دقیقه" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "ثانیه" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "فیلد های متنی" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "شماره پورت معتبر نیست" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3212,8 +3219,8 @@ msgstr "کوئری داخلی" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "پايگاه داده" @@ -4122,7 +4129,7 @@ msgstr "فهرست %s حذف گرديد." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4178,8 +4185,8 @@ msgstr "نمایه" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "جدول" @@ -4567,46 +4574,46 @@ msgstr "" msgid "Unknown table status:" msgstr ":وضعیت جدول ناشناس " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "جستجو در پايگاه‌داده" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "پایگاه داده نامعتبر" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid database" msgid "Invalid table name:" msgstr "پایگاه داده نامعتبر" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "نسخه سرور" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "جدول %s به %s تغيير نام داده‌شد" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "تنظیمات UI جدول قابل ذخیره سازی نیست" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4615,7 +4622,7 @@ msgstr "" "پاک سازی تنظیمات UI جداول موفقیت آمیز نبود(به $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s مراجعه کنید)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4625,20 +4632,20 @@ msgstr "" "مقدار UI \"%s\" را نمی توان ذخیره کرد.تغییرات انجام شد اما با رفرش صفحه از " "بین می روند.لطفا ساختار جدول خود را برای تغییرات چک کنید." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "نام كليد اصلي بايد PRIMARY باشد !" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "بازناميدن فهرست به PRIMARY مقدور نمي‌باشد!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 #, fuzzy msgid "No index parts defined!" msgstr "هيچ فهرستي تعريف‌نشده‌است!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11312,63 +11319,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "خطا : رابطه قبلا ایجاد شده است." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "رابطه کلید خارجی اضافه شد" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "ارتباط داخلی افزوده شد" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "رابطه کلید خارجی اضافه شد" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "خطا : رابطه اضافه نشده است ." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11500,31 +11507,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "no Description" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12211,27 +12218,27 @@ msgid "routine" msgstr "افزودن ستون جديد" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "در پايگاه داده هيچ جدولي یافت نشد." #: libraries/rte/rte_words.lib.php:43 @@ -12254,13 +12261,13 @@ msgid "trigger" msgstr "افزودن يك كاربر جديد" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "در پايگاه داده هيچ جدولي یافت نشد." #: libraries/rte/rte_words.lib.php:57 @@ -12282,13 +12289,13 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "در پايگاه داده هيچ جدولي یافت نشد." #: libraries/rte/rte_words.lib.php:71 @@ -14017,7 +14024,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14129,7 +14136,7 @@ msgstr "در ابتداي جدول" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14150,6 +14157,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "در ابتداي جدول" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15805,39 +15818,46 @@ msgstr "عمل" msgid "Constraint properties" msgstr "نام ستونها" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "اعمال محدودیت ها" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy msgid "Internal relations" msgstr "اروپای غربی" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy msgid "Internal relation" msgstr "اروپای غربی" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15849,13 +15869,13 @@ msgstr "ستون را براي نمايش انتخاب نماييد" msgid "Foreign key constraint %s has been dropped" msgstr "اعمال محدودیت ها" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "نام ستونها" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "افزودن ستون جديد" diff --git a/po/fi.po b/po/fi.po index 6c484ed7f7..d4f95a8551 100644 --- a/po/fi.po +++ b/po/fi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-08-04 19:13+0000\n" "Last-Translator: Juha \n" "Language-Team: Finnish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2293,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Merkitse tai poista merkintä napsauttamalla." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Kopioi kentän nimi kaksoisnapsauttamalla." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Muuta sarakkeen näkyvyyttä
napsauttamalla pudotusvalikon nuolta." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Näytä kaikki" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2321,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2335,104 +2342,104 @@ msgstr "" "Oletko varma että haluat nähdä kaikki rivit? Suuret taulut voivat kaataa " "selaimesi." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Alkuperäinen pituus" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "peruuta" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Keskeytetty" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Onnistui" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Tuo tila" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Vedä tiedostot tähän" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Valitse ensin tietokanta" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Siirry linkkiin:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopioi kentän nimi." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Keksi salasana" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Keksi" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Lisää" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Näytä paneeli" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Piilota paneeli" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Näytä piilotetut navigointipuun kohteet." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Linkitä pääpaneelin kanssa" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Poista pääpaneelin linkki" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2442,48 +2449,48 @@ msgstr "" "Uusin versio on %s, ja se on julkaistu %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", viimeisin vakaa versio:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "ajan tasalla" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Luo näkymä" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Lähetä virheraportti" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Lähetä virheraportti" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Muuta raportin asetuksia" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Näytä raportin tarkemmat tiedot" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2493,60 +2500,60 @@ msgstr "" "lomake jotkut kentät voidaan jättää huomiotta, PHP:n max_input_vars " "konfiguraation vuoksi." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Palvelimella on havaittu joitakin virheitä!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Ole hyvä ja katso tämän ikkunan alalaitaan." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Sivuuta kaikki" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Suoritetaanko tämä kysely uudelleen?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Haluatko varmasti poistaa tämän kirjanmerkin?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "SQL-virheenkorjauksen tietoja haettaessa tapahtui virhe." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s SQL-kyselyä suoritettu %s kertaa %s sekunnissa." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argumenttia syötetty" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Näytä argumentit" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Piilota argumentit" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Aikaa kului:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2561,347 +2568,347 @@ msgstr "" "tyhjennys voi auttaa. Safari-selaimella tällaisen ongelman aiheuttaa yleensä " "\"yksityisen tilan selaus\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopioi taulut tietokantaan" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Lisää tauluun etuliite" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Korvaa taulu etuliiteellä" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopioi taulun etuliite" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Edellinen kuukausi" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Seuraava kuukausi" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Tänään" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Tammikuu" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Helmikuu" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Maaliskuu" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Huhtikuu" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Toukokuu" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Kesäkuu" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Heinäkuu" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Elokuu" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Syyskuu" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Lokakuu" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Marraskuu" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Joulukuu" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Tammi" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Helmi" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Maalis" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Huhti" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Touko" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Kesä" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Heinä" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Elo" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Syys" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Loka" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Marras" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Joulu" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Sunnuntai" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Maanantai" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Tiistai" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Keskiviikko" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Torstai" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Perjantai" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Lauantai" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Su" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ti" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Ke" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "To" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pe" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "La" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Su" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "La" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Vko" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalenteri-kuukausi-vuosi" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Tunti" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuutti" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekunti" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Kenttä on pakollinen" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Ole hyvä ja korjaa tämä kenttä" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Ole hyvä ja anna pätevä sähköpostiosoite" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Ole hyvä ja anna pätevä URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Ole hyvä ja anna pätevä päivämäärä" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Ole hyvä ja anna pätevä päivämäärä (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Ole hyvä ja anna pätevä numero" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Ole hyvä ja anna pätevä luottokortin numero" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Ole hyvä ja kirjoita vain numeroita" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Ole hyvä ja annat saman arvon uudelleen" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Ole hyvä ja kirjoita maksimissaan {0} merkkiä" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Ole hyvä ja kirjoita vähintään {0} merkkiä" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Ole hyvä ja kirjoita arvo väliltä {0} ja {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Ole hyvä ja anna pätevä päivämäärä tai aika" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Ole hyvä ja anna pätevä heksadesimaalinen arvo" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3001,8 +3008,8 @@ msgstr "Suorita hakulause uudelleen" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Tietokanta" @@ -3801,7 +3808,7 @@ msgstr "Indeksi %s on poistettu." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3861,8 +3868,8 @@ msgstr "Näkymä" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Taulu" @@ -4223,39 +4230,39 @@ msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria." msgid "Unknown table status:" msgstr "Tuntematon taulun tila:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Lähdetietokanta '%s' ei löytynyt!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Kohde tietokantaa '%s' ei löydy!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Virheellinen tietokanta:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Virheellinen taulukon nimi:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Virhe nimettäessä uudelleen taulua %1$s muotoon %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Taulu %1$s on nimeltään %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Taulukon käyttöliittymäasetuksia ei voida tallentaa!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4264,7 +4271,7 @@ msgstr "" "Taulun käyttöliittymäasetuksia ei voitu siivota (katso $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4275,19 +4282,19 @@ msgstr "" "eivät säily sivun päivittämisen jälkeen. Tarkista onko taulukon rakenne " "muuttunut." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Perusavaimen nimen on oltava PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Indeksiä ei voi muuttaa PRIMARY-nimiseksi!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Indeksin osia ei ole määritelty!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Virhe luotaessa kohteen %1$s viiteavainta (tarkista tietotyypit)" @@ -11137,61 +11144,61 @@ msgstr "Käyttää SQL-kyselyssä syntaksinväritystä." msgid "Formats text as XML with syntax highlighting." msgstr "Käyttää SQL-kyselyssä syntaksinväritystä." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Virhe: relaatio on jo olemassa." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY -relaatio lisätty" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Virhe: Relaatio ominaisuudet ovat poissa käytöstä!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Sisäinen relaatio luotu" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY -relaatio lisätty" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Virhe: Relaatiota ei luotu." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11330,18 +11337,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ei kuvausta" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -11352,13 +11359,13 @@ msgstr "" "Tyhjennä phpMyAdminin hallintakäyttäjä käytettäessä phpMyAdmin configuration " "storage-kantaa" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12147,27 +12154,27 @@ msgstr "Rutiinit" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Sinulla ei ole riittäviä oikeuksia!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Tietokannassa ei ole tauluja." #: libraries/rte/rte_words.lib.php:43 @@ -12197,13 +12204,13 @@ msgstr "Herättimet" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Sinulla ei ole riittäviä oikeuksia!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Tietokannassa ei ole tauluja." #: libraries/rte/rte_words.lib.php:57 @@ -12233,13 +12240,13 @@ msgstr "Tapahtuma" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Sinulla ei ole riittäviä oikeuksia!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Tietokannassa ei ole tauluja." #: libraries/rte/rte_words.lib.php:71 @@ -14173,7 +14180,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14295,7 +14302,7 @@ msgstr "Taulun alkuun" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14318,6 +14325,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Taulun alkuun" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16049,35 +16062,42 @@ msgstr "Toiminnot" msgid "Constraint properties" msgstr "Rajoitteet taululle" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Viiteavaimen rajoitus" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Lisää rajoitteet" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Sisäiset relaatiot" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16085,7 +16105,7 @@ msgstr "" "Sisäistä relaatiota ei tarvita, kun vastaava FOREIGN KEY -relaatio on " "olemassa." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16097,13 +16117,13 @@ msgstr "Valitse näytettävä sarake" msgid "Foreign key constraint %s has been dropped" msgstr "Viiteavaimen rajoitus" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Rajoitteet taululle" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/fr.po b/po/fr.po index 4f545f2c52..82ba1b2634 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-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-08 14:56+0000\n" "Last-Translator: Marc Delisle \n" -"Language-Team: French " -"\n" +"Language-Team: French \n" "Language: fr\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,11 +64,12 @@ msgstr "Commentaires sur la table : " #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -521,7 +522,7 @@ msgstr "" msgid "Succeeded" msgstr "Succès" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Échec" @@ -625,7 +626,7 @@ msgstr "La commande «DROP DATABASE» est désactivée." 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:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -650,7 +651,7 @@ msgstr "" msgid "General settings" msgstr "Paramètres généraux" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1066,7 +1067,7 @@ msgstr "Vous devez ajouter au moins une colonne." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Aperçu SQL" @@ -1528,7 +1529,7 @@ msgstr "Expliquer les résultats" msgid "Status" msgstr "État" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1979,7 +1980,7 @@ msgid "Second step of normalization (2NF)" msgstr "Deuxième étape de la normalisation (2FN)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fermer" @@ -2060,7 +2061,7 @@ msgstr "Aucune dépendance sélectionnée !" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Sauvegarder" @@ -2140,7 +2141,7 @@ msgstr "Sélectionnez deux colonnes différentes" msgid "Data point content" msgstr "Données reliées à ce point" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2192,6 +2193,18 @@ msgstr "" "directement ces valeurs si besoin" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL accepte des valeurs non sélectionnables via le menu; entrez " +"directement ces valeurs si besoin" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2199,24 +2212,24 @@ msgstr "" "Indique que vous avez fait des modifications à cette page; on vous demandera " "confirmation avant d'abandonner les modifications" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Sélectionnez la clé référencée" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Choisissez la clé étrangère" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "Veuillez choisir la clé primaire ou un index unique !" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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 +2237,76 @@ msgstr "" "Vous n'avez pas sauvegardé les changements. Ils seront perdus si vous ne les " "sauvegardez pas. Voulez-vous continuer ?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Nom de la page" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sauvegarder la page" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Ouvrir la page" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Supprimer la page" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sans titre" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Veuillez sélectionner une page pour continuer" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Veuillez saisir un nom de page valide" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "La page a été correctement supprimée" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Exporter un schéma relationnel" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Les modifications ont été sauvegardées" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Ajouter une option pour la colonne «%s»." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d objet(s) créé(s)." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Exécuter" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Appuyez sur la touche d'échappement pour annuler l'édition." -#: js/messages.php:564 +#: js/messages.php:570 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 +2314,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Faire glisser pour réordonner." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Cliquer pour trier les résultats sur cette colonne." -#: js/messages.php:570 +#: js/messages.php:576 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 +2332,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Cliquer pour marquer/enlever les marques." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Double-cliquez pour copier le nom de la colonne." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Tout afficher" -#: js/messages.php:581 +#: js/messages.php:587 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 +2360,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2361,106 +2374,106 @@ msgstr "" "Voulez-vous vraiment voir toutes les lignes ? Pour une grande table, cela " "pourrait faire planter le navigateur." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Longueur originale" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "annuler" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Arrêts prématurés" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Succès" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "État de l'importation" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Déposez des fichiers ici" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Choisissez d'abord une base de données" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Suivre le lien :" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copier le nom de la colonne." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Générer un mot de passe" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Générer" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "plus" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Montrer le panneau" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Cacher le panneau" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Montrer les éléments de navigation cachés." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Relier au panneau principal" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Supprimer la liaison au panneau principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2470,27 +2483,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:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", dernière version stable : " -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "à jour" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Créer une vue" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Envoyer le rapport d'erreurs" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Soumettre un rapport d'erreurs" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2498,15 +2511,15 @@ msgstr "" "Une erreur JavaScript fatale s'est produite. Désirez-vous envoyer un rapport " "d'erreur ?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Changer les paramètres du rapport" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Montrer les détails du rapport" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2514,7 +2527,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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2524,61 +2537,61 @@ msgstr "" "l'envoi, certains des champs pourraient être ignorés, en raison de la " "configuration max_input_vars de PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Des erreurs ont été détectées sur le serveur !" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Veuillez regarder au bas de cette fenêtre." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorer tout" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Exécuter cette requête à nouveau ?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Voulez-vous vraiment supprimer ce signet ?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s arguments passés" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Montrer les arguments" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Cacher les arguments" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Temps nécessaire :" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2594,347 +2607,347 @@ msgstr "" "Dans Safari, ce problème est habituellement causé par l'utilisation de la « " "Navigation en mode privé »." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copier les tables vers" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Ajouter un préfixe de table" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Remplacer la table ayant le préfixe" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copier la table avec un préfixe" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Précédent" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Suivant" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Aujourd'hui" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Janvier" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Février" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mars" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Avril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juin" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juillet" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Août" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Septembre" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Octobre" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembre" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Décembre" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Janvier" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Février" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mars" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Avril" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Juin" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Juillet" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Août" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Septembre" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Octobre" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Novembre" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Décembre" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Dimanche" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Lundi" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Mardi" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Mercredi" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Jeudi" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Vendredi" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Samedi" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dim" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Jeu" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sam" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Je" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Heure" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minute" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Seconde" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Ce champ est obligatoire" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Corrigez ce champ" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Veuillez saisir une adresse courriel valide" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Veuillez saisir une URL valide" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Veuillez saisir une date valide" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Veuillez saisir une date valide (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Veuillez saisir un nombre valide" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Veuillez saisir un numéro de carte de crédit valide" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Veuillez saisir uniquement des chiffres" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Veuillez saisir la même valeur à nouveau" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Veuillez saisir au maximum {0} caractères" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Veuillez saisir au moins {0} caractères" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Veuillez saisir une valeur entre {0} et {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Veuillez saisir une valeur inférieure ou égale à {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Veuillez saisir une valeur supérieure ou égale à {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Veuillez saisir une date ou une heure valide" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Veuillez saisir une valeur hexadécimale valide" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3036,8 +3049,8 @@ msgstr "Exécuter la requête à nouveau" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de données" @@ -3840,7 +3853,7 @@ msgstr "L'index %s a été effacé." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3901,8 +3914,8 @@ msgstr "Vue" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Table" @@ -4264,39 +4277,39 @@ msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s." msgid "Unknown table status:" msgstr "État de la table inconnu :" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "La base de données source `%s` n'existe pas !" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "La base de données cible `%s` n'existe pas !" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Nom de base de données invalide : " -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nom de table invalide : " -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erreur lors du renommage de %1$s en %2$s !" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La table %1$s se nomme maintenant %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Impossible de sauvegarder les préférences d'interface de tables !" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4305,7 +4318,7 @@ msgstr "" "Echec lors de la tentative de vidage de la table UI Préférences (voir " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4316,19 +4329,19 @@ msgstr "" "sera pas persistant après actualisation de cette page. Merci de vérifier si " "la structure de la table a changé." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nom d'une clé primaire doit être «PRIMARY» !" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "La clé ne peut être renommée PRIMARY !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Aucune colonne n'a été définie pour cet index !" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11118,47 +11131,47 @@ msgstr "Formate le texte en JSON avec la coloration syntaxique." msgid "Formats text as XML with syntax highlighting." msgstr "Formate le texte en XML avec la coloration syntaxique." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Erreur: relation déjà existante." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relation de type FOREIGN KEY ajoutée." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erreur: relation de clé étrangère non ajoutée !" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Erreur : Un index est manquant sur la colonne." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Erreur : fonctionnalités relationnelles désactivées !" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Relation interne ajoutée." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Erreur: relation interne non ajoutée !" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relation de type FOREIGN KEY supprimée." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erreur: relation de type FOREIGN KEY non ajoutée !" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Erreur : relation interne non ajoutée !" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relation interne supprimée." @@ -11281,11 +11294,11 @@ msgstr "" "Reconnectez-vous à phpMyAdmin afin d'utiliser le fichier de configuration " "modifié." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "pas de description" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11296,7 +11309,7 @@ msgstr "" "base de données pour y mettre en place la configuration de stockage " "phpMyAdmin." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11305,7 +11318,7 @@ msgstr "" "%sCréer%s une base de données nommée « phpmyadmin » et la configuration du " "stockage de phpMyAdmin dans cette base." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11313,7 +11326,7 @@ msgstr "" "%sCréer%s le stockage de configurations phpMyAdmin dans la base de données " "active." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11992,31 +12005,40 @@ msgid "routine" msgstr "Procédure stockée" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Vous n'avez pas les privilèges nécessaires pour créer une procédure" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "La procédure %1$s n'a pas été trouvée dans la base de données %2$s . Vous " "manquez sans-doute des privilèges nécessaires pour modifier cette procédure" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Aucune routine avec le nom %1$s trouvé dans la base de données %2$s. Vous " "manquez peut-être des privilèges nécessaires pour afficher/exporter cette " "routine." #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" "Aucune procédure portant le nom %1$s n'a été trouvée dans la base de données " "%2$s" @@ -12039,12 +12061,15 @@ msgid "trigger" msgstr "déclencheur" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Vous n'avez pas les privilèges nécessaires pour créer un déclencheur" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" "Aucun déclencheur nommé %1$s n'a été trouvé dans la base de données %2$s" @@ -12066,12 +12091,15 @@ msgid "event" msgstr "événement" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Vous n'avez pas les privilèges nécessaires pour créer un événement" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Aucun événement nommé %1$s n'a été trouvé dans la base de données %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -12359,8 +12387,8 @@ msgid "" "Allows user to give to other users or remove from other users privileges " "that user possess on this routine." msgstr "" -"Permet à l’utilisateur de donner à d’autres utilisateurs ou supprimer à d’" -"autres utilisateurs des privilèges que l’utilisateur possède sur cette " +"Permet à l’utilisateur de donner à d’autres utilisateurs ou supprimer à " +"d’autres utilisateurs des privilèges que l’utilisateur possède sur cette " "routine." #: libraries/server_privileges.lib.php:1042 @@ -13909,8 +13937,12 @@ msgid "Unexpected end of CASE expression" msgstr "Fin inattendue d'une expression CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Un nom de symbole était attendu ! Un mot clé réservé ne peut pas servir " @@ -14013,7 +14045,7 @@ msgstr "Début d'énoncé inattendu." msgid "Unrecognized statement type." msgstr "Type d'énoncé non reconnu." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Aucune transaction n'a été précédemment démarrée." @@ -14034,6 +14066,12 @@ msgstr "Ce type de clause a été analysé précédemment." msgid "Unrecognized keyword." msgstr "Mot clé non reconnu." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Début d'énoncé inattendu." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Le nom de l'entité était attendu." @@ -15525,31 +15563,38 @@ msgstr "Actions" msgid "Constraint properties" msgstr "Propriétés de la contrainte" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Seules les colonnes avec un index seront affichées. Vous pouvez définir un " "index ci-dessous." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Contrainte de clé étrangère" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Ajouter une contrainte" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relations internes" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relation interne" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15557,7 +15602,7 @@ msgstr "" "Une relation interne n'est pas nécessaire lorsqu'une clé correspondante de " "type FOREIGN KEY existe." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Colonne descriptive : " @@ -15566,11 +15611,11 @@ msgstr "Colonne descriptive : " msgid "Foreign key constraint %s has been dropped" msgstr "La contrainte de clé étrangère %s a été supprimée" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Nom de la contrainte" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Ajouter une colonne" diff --git a/po/fy.po b/po/fy.po index 9eda79ad1f..a2c437b9b4 100644 --- a/po/fy.po +++ b/po/fy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-12-24 23:02+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Frisian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "annulearje" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Wachtwurd generearje" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generearje" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mear" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Table comments" msgid "Show panel" msgstr "Tabelopmerkings" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Main panel" msgid "Hide panel" msgstr "Haadpaniel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2352,113 +2359,113 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverpoarte" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverpoarte" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Ynstellingen wizigjen" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabelopmerkings" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,353 +2474,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Table comments" msgid "Copy tables to" msgstr "Tabelopmerkings" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Foarheaksel tafoegje" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Folgjende" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hjoed" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "jannewaris" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "febrewaris" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "maart" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "maaie" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juny" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "july" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "augustus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "septimber" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "novimber" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "desimber" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "des" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "snein" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "moandei" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "tiisdei" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "woansdei" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "tongersdei" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "freed" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "sneon" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "si" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "ti" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "to" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "fr" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "so" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "si" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "ti" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wike" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Oere" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minút" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekonde" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Search in database" msgid "Please enter a valid date" msgstr "Sykje yn de database" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2907,8 +2914,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3715,7 +3722,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3771,8 +3778,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4134,46 +4141,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4181,19 +4188,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10404,47 +10411,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10560,31 +10567,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "gjin beskriuwing" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11228,26 +11235,26 @@ msgid "routine" msgstr "routine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11268,12 +11275,12 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11294,12 +11301,12 @@ msgid "event" msgstr "barren" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12938,7 +12945,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13040,7 +13047,7 @@ msgstr "Oantal tabellen:" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13061,6 +13068,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Number of tables:" +msgid "Unexpected ordering of clauses." +msgstr "Oantal tabellen:" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14539,35 +14552,42 @@ msgstr "Aksjes" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Ynterne relaasjes" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Ynterne relaasje" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14576,11 +14596,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/gl.po b/po/gl.po index af84093a5f..d01388af28 100644 --- a/po/gl.po +++ b/po/gl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-01-17 22:02+0000\n" "Last-Translator: Xosé Calvo \n" "Language-Team: Galician - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2303,27 +2310,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Prema para marcar/desmarcar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Prema dúas veces para copiar o nome da columna." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostrar todo" -#: js/messages.php:581 +#: js/messages.php:587 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 +2339,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2346,104 +2353,104 @@ msgstr "" "Confirma que desexa ver todas as filas? Se a táboa é grande o navegador " "podería fallar." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Tamaño orixinal" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "cancelar" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Interrompido" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Éxito" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Estado da importación" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Soltar os ficheiros aquí" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Seleccione a base de datos antes" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Ir á ligazón:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copiar o nome da columna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Xerar un contrasinal" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Xerar" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Máis" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Mostrar o panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Agochar o panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostrar os elementos agochados da árbore de navegación." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Ligar co panel principal" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desligar do panel principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,42 +2460,42 @@ msgstr "" "A versión máis recente é %s, publicada o %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ",última versión estable:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "actualizada" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Crear unha vista" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Enviar un informe de erro" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Entregar o informe de erro" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Cambiar a configuración dos informes" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Mostrar os detalles do informe" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2496,7 +2503,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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2506,60 +2513,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Detectáronse algúns erros no servidor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Mire na parte inferior desta xanela." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorar todo" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executar esta consulta de novo?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Confirma que desexa eliminar este marcador?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s veces en %s segundos." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "Paráronse %s argumento(s)" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Mostrar os argumentos" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Agochar os argumentos" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo que levou:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2574,347 +2581,347 @@ 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:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copiar as táboas a" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Engadir un prefixo á táboa" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Substituír a táboa co prefixo" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar a táboa con prefixo" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Seguinte" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hoxe" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Xaneiro" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Febreiro" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Marzo" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Abril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maio" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Xuño" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Xullo" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agosto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Setembro" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Outubro" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembro" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Decembro" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Xan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Xuño" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Xullo" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Luns" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Martes" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Mércores" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Xoves" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Venres" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lu" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ma" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mé" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Xo" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ve" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sá" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Mé" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "X" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sá" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sm" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendario-mes-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Segundo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Este campo é obrigatorio" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Arranxe este campo" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Introduza un enderezo de correo aceptábel" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Introduza un URL aceptábel" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Introduza unha data aceptábel" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Introduza unha data aceptábel (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Introduza un número aceptábel" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Introduza un número de tarxeta de crédito aceptábel" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Introduza unicamente díxitos" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Introduza o mesmo valor de novo" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Non introduza máis de {0} caracteres" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Introduza ao menos {0} caracteres" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Introduza un valor entre {0} e {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Introduza valores inferiores ou iguais a {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Introduza un valor maior ou igual a {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Introduza unha data ou hora aceptábeis" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Introduza unha entrada hexadecimal aceptábel" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3016,8 +3023,8 @@ msgstr "subconsulta" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de datos" @@ -3823,7 +3830,7 @@ msgstr "Eliminouse o índice %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3881,8 +3888,8 @@ msgstr "Vista" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Táboa" @@ -4244,39 +4251,39 @@ msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s." msgid "Unknown table status:" msgstr "Estado da táboa descoñecido:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de orixe «%s»!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Non foi posíbel atopar a base de datos de destino «%s»!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "A base de datos non é válida:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "O nome da táboa non é válido:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Produciuse un erro ao mudarlle o nome á táboa %1$s para %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A táboa %1$s foi renomeada a %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Non foi posíbel gardar as preferencias de IU da táboa!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4285,7 +4292,7 @@ msgstr "" "Produciuse un erro ao limpar as preferencias de IU da táboa (vexa " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4296,19 +4303,19 @@ msgstr "" "persistentes despois de anovar esta páxina. Comprobe se se modificou a " "estrutura da táboa." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primaria debe ser «PRIMARY»!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Non se pode facer que este índice sexa PRIMARIO!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Non se definiron partes do índice!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11270,61 +11277,61 @@ msgstr "Formata texto como consulta de SQL e realza a sintaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formata texto como consulta de SQL e realza a sintaxe." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Erro: xa existe unha relación." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Erro: As funcionalidades relacionais están desactivadas!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Engadiuse a relación interna" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Engadiuse unha relación cunha CHAVE EXTERNA" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Erro: non se engadiu a relación." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11467,18 +11474,18 @@ msgstr "" "Entre de novo no phpMyAdmin para cargar o ficheiro de configuración " "actualizado." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "sen descrición" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11486,14 +11493,14 @@ msgid "" "configuration storage there." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Faltan as táboas de almacenamento da configuración do phpMyAdmin" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12220,26 +12227,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Non ten privilexios suficientes para crear unha rutina" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Non se atopou ningunha rutina co nome %1$s na base de datos %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12260,12 +12270,15 @@ msgid "trigger" msgstr "disparador" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Non ten privilexios suficientes para crear un disparador" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Non se atopou ningún disparador co nome %1$s na base de datos %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12286,12 +12299,15 @@ msgid "event" msgstr "acontecemento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Non ten privilexios suficientes para crear un acontecemento" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Non se atopou ningún acontecemento co nome %1$s na base de datos %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14208,7 +14224,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14330,7 +14346,7 @@ msgstr "No comezo da táboa" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14353,6 +14369,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "No comezo da táboa" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15979,31 +16001,38 @@ msgstr "Accións" msgid "Constraint properties" msgstr "Restricións para a táboa" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Límite das chaves externas" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Engadir limitacións" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relacións internas" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relación interna" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16011,7 +16040,7 @@ msgstr "" "Non se precisa unha relación interna cando existe unha CHAVE EXTERNA " "correspondente." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Escolla a columna que desexe mostrar:" @@ -16021,11 +16050,11 @@ msgstr "Escolla a columna que desexe mostrar:" msgid "Foreign key constraint %s has been dropped" msgstr "Límite das chaves externas" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Límite do nome" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/gu.po b/po/gu.po index 927da77c8f..88e87d05e8 100644 --- a/po/gu.po +++ b/po/gu.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-01-08 17:45+0000\n" "Last-Translator: Nijraj Gelani \n" "Language-Team: Gujarati - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2319,105 +2326,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2433,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2860,8 +2867,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3648,7 +3655,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3704,8 +3711,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4065,46 +4072,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4112,19 +4119,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10243,47 +10250,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10399,31 +10406,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11065,26 +11072,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11105,12 +11112,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11131,12 +11138,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12747,7 +12754,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12847,7 +12854,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12868,6 +12875,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14295,35 +14306,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14332,11 +14350,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/he.po b/po/he.po index 2fb8fe42a5..f505b16f38 100644 --- a/po/he.po +++ b/po/he.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-07-28 16:36+0200\n" "Last-Translator: Moshe Harush \n" "Language-Team: Hebrew - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "שמות עמודה" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "הצגת הכול" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "מיקום מקורי" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "בוטל" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "קבצי ייבוא" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "בחירת טבלאות" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "הדפסה" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "אין מאגרי נתונים" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "שמות עמודה" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "ייצור סיסמא" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "ייצור" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "יום שני" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "הצגת הכול" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "הוספת שדה חדש" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "הראה רשת" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "אפשרויות ייצוא מאגר נתונים" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2610,121 +2617,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "אין מאגרי נתונים" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "גרסת שרת" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "קוד שרת (ID)" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "קוד שרת (ID)" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "תכונות קשר כלליות" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "ראיית טבלאות" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "התעלמות" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "הראה את שאילתה כאן שוב" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "האם אכן ברצונך להפעיל את „%s”?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "שאילתת SQL" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "הערות לטבלה" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "שאילתת SQL" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,36 +2740,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "העתקת מסד הנתונים אל" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "הוספת שדה חדש" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "החלפת קידומת הטבלה" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "העתקת הטבלה עם קידומת" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "הקודם" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2770,96 +2777,96 @@ msgid "Next" msgstr "הבא" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "סה\"כ" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "בינארי" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "מרץ" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "אפריל" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "מאי" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "יוני" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "יולי" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "אוגוסט" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "אוקטובר" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ינואר" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "פברואר" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "מרץ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "אפריל" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2867,78 +2874,78 @@ msgid "May" msgstr "מאי" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "יוני" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "יולי" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "אוגוסט" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ספטמבר" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "אוקטובר" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "נובמבר" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "דצמבר" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "יום ראשון" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "יום שני" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "יום שלישי" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "יום שישי" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2946,223 +2953,223 @@ msgid "Sun" msgstr "יום ראשון" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "יום שני" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "יום שלישי" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "יום רביעי" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "יום חמישי" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "יום שישי" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "שבת" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "יום ראשון" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "יום שני" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "יום שלישי" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "יום רביעי" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "יום חמישי" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "יום שישי" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "שבת" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ללא" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "בשימוש" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "לשנייה" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "השתמש בשדה טקסט" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d הוא לא מספר שורה תקין." -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3258,8 +3265,8 @@ msgstr "בשאילתה" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "מסד נתונים" @@ -4176,7 +4183,7 @@ msgstr "אינדקס %s הוסר." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4232,8 +4239,8 @@ msgstr "תצוגה" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "טבלה" @@ -4628,50 +4635,50 @@ msgstr "שרת MySQL לא תומך במנוע אחסון %s." msgid "Unknown table status:" msgstr "ראיית טבלאות" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "חפש במסד הנתונים" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "אין מאגרי נתונים" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "בתוך הטבלאות:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "גרסת שרת" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "טבלה %s שונתה אל %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4679,19 +4686,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "לא ניתן לשנות שם אינדקס אל PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11373,60 +11380,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "שינויים נשמרו" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "יחסים פנימיים" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "שינויים נשמרו" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "לא ניתן לקרוא את הקובץ" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "יחסים פנימיים" @@ -11558,31 +11565,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ללא תיאור" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12292,27 +12299,27 @@ msgstr "הוספת שדה חדש" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "לא נמצאו טבלאות במאגר נתונים." #: libraries/rte/rte_words.lib.php:43 @@ -12337,13 +12344,13 @@ msgstr "הוספת משתמש חדש" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "לא נמצאו טבלאות במאגר נתונים." #: libraries/rte/rte_words.lib.php:57 @@ -12369,13 +12376,13 @@ msgstr "נשלח" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "אין לך הרשאות מספיקות להיות כאן כרגע!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "לא נמצאו טבלאות במאגר נתונים." #: libraries/rte/rte_words.lib.php:71 @@ -14130,7 +14137,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14242,7 +14249,7 @@ msgstr "בתחילת טבלה" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14263,6 +14270,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "בתחילת טבלה" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15926,39 +15939,46 @@ msgstr "פעולה" msgid "Constraint properties" msgstr "הגבלות לטבלה" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "הוספת הגבלות" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "יחסים פנימיים" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "יחסים פנימיים" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15970,13 +15990,13 @@ msgstr "בחירת שדה להצגה" msgid "Foreign key constraint %s has been dropped" msgstr "הוספת הגבלות" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "הגבלות לטבלה" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/hi.po b/po/hi.po index 8187e5f142..2851c861a3 100644 --- a/po/hi.po +++ b/po/hi.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:29+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Hindi - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "चिन्हित / अचिन्हित करने के लिए क्लिक करें" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "कोलम के नाम" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "सभी दिखाएँ" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2469,131 +2476,131 @@ msgstr "" "इस टेबल में कोई भी विशिष्ट (unique) कॉलम नहीं है। इस बात कि सम्भावना है कि ग्रिड " "सम्पादन, टिक-बॉक्स, सम्पादन, प्रतिलिपि एवं मिटाने के लिंक से जुडी सुविधाएँ काम न करें।" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "मूल स्थिति" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "रद्द" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "रद्द" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "आयात" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "टेबल चुनिये" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "छापें" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "लिंक पर जाएँ" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "कोलम के नाम" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "नया पासवर्ड उत्पन्न करें" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "उत्पन्न करें" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "अधिक" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "सभी दिखाएँ" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add index" msgid "Hide panel" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "बाईं फ्रेम में लोगो देखियें" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "मुख्य फ्रेम को अनुकूलित करें" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2602,123 +2609,123 @@ msgstr "" "phpMyAdmin का नवीन संस्करण उपलब्ध है। नया संस्करण %s है जो कि %s को प्रकाशित हुआ है।" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "नवीनतम स्थिर संस्करण:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "अद्यतन" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "दृश्य बनाइये" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "सर्वर" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "सर्वर" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "सेटिंग्स बदलें" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "खुला टेबल शो" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "उपेक्षा करें" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "यह query वापस यहीं दिखायें" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "क्या आप सचमुच \"%s\" निष्पादित चाहते है?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "टेबल की टिप्पणी" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "खोज परिणाम छिपाएँ" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2727,182 +2734,182 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "डेटाबेस को ______ में कॉपी करें" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add index" msgid "Add table prefix" msgstr "अनुक्रमणिका जोड़" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "टेबल के उपसर्ग को पुनर्स्थापना करें" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "टेबल को इस उपसर्ग के साथ प्रतिलिपि बनाएँ" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "पिछला" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "अगला" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "आज" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "जनवरी" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "फरवरी" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "मार्च" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "अप्रैल" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "मई" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "जून" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "जुलाई" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "अगस्त" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "सितम्बर" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "अक्तूबर" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "नवम्बर" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "दिसम्बर" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "जनवरी" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "फरवरी" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "मार्च" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "अप्रैल" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "मई" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "जून" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "जुलाई" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "अगस्त" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "सितम्बर" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "अक्तूबर" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "नवम्बर" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "दिसमबर" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "रविवार" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "सोमवार" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "मंगलवार" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "बुधवार" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "गुरूवार" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "शुक्रवार" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "शनिवार" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2910,203 +2917,203 @@ msgid "Sun" msgstr "रविवार" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "सोमवार" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "मंगलवार" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "बुधवार" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "गुरुवार" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "शुक्रवार" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "शनिवार" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "रवि" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "सोम" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "मंगल" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "बुध" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "गुरु" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "शुक्र" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "शनि" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "सप्ताह" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "कैलेण्डर-माह-वर्ष" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "कुछ नहीं" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "घंटा" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "मिनट" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "सेकण्ड" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "पाठ फ़ील्ड" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "वैध पोर्ट नहीं एक" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3203,8 +3210,8 @@ msgstr "उप-क्वरी" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "डाटाबेस" @@ -4126,7 +4133,7 @@ msgstr "सूचकांक %s गिरा दिया गया है." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4182,8 +4189,8 @@ msgstr "दृश्य" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "टेबल" @@ -4576,56 +4583,56 @@ msgstr "यह MySQL सर्वर %s भंडारण इंजन का msgid "Unknown table status:" msgstr "मास्टर अवस्था" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "स्रोत डेटाबेस" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "विषयवस्तु %s नहीं मिला है!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "अमान्य डेटाबेस" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "अवैध टेबल नाम" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि।" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "टेबल %s का नाम बदल कर %s रखा गया है." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save configuration" msgid "Could not save table UI preferences!" msgstr "विन्यास सहेज नहीं सकते" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4633,20 +4640,20 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "प्राथमिक कुंजी का नाम \"प्राथमिक\" होना चाहिए!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "इन्डेक्स को PRIMARY नाम मे नहीं बदल सकते!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 #, fuzzy msgid "No index parts defined!" msgstr "सूचकांक हिस्सा परिभाषित नहीं है!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "विदेशी कुंजी बनाने में त्रुटि %1$s ( डेटा टाइप चेक करें)" @@ -11671,63 +11678,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "त्रुटि: रिश्ता पहले से ही मौजूद है." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "आंतरिक संबंध जोड़ा." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "विदेशी कुंजी रिश्ता जोड़ा." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "त्रुटि: रिलेशन नहीं जोड़ा गया." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11863,18 +11870,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "कोई विवरण नहीं" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11882,14 +11889,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin विन्यास भंडारण टेबल लापता" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12628,27 +12635,27 @@ msgstr "नियमित कार्य" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "डाटाबेस में कोई टेबल नहीं।" #: libraries/rte/rte_words.lib.php:43 @@ -12678,13 +12685,13 @@ msgstr "ट्रिगर" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "डाटाबेस में कोई टेबल नहीं।" #: libraries/rte/rte_words.lib.php:57 @@ -12714,13 +12721,13 @@ msgstr "घटना" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "आपके पास यहाँ उपस्थित होने के अधिकार नहीं हैं" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "डाटाबेस में कोई टेबल नहीं।" #: libraries/rte/rte_words.lib.php:71 @@ -14480,7 +14487,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14598,7 +14605,7 @@ msgstr "टेबल के शुरू में" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14619,6 +14626,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "टेबल के शुरू में" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16314,37 +16327,44 @@ msgstr "कार्य" msgid "Constraint properties" msgstr "टेबल के लिए प्रतिबन्ध" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "विदेशी कुंजी बाधा" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "शर्तें जोडें" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "आंतरिक संबंध" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "आंतरिक संबंध" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "एक आंतरिक संबंध आवश्यक नहीं है जब एक विदेशी कुंजी संबंध मौजूद है." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16356,13 +16376,13 @@ msgstr "प्रदर्शित करने के लिए काँल msgid "Foreign key constraint %s has been dropped" msgstr "विदेशी कुंजी बाधा" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "टेबल के लिए प्रतिबन्ध" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/hr.po b/po/hr.po index 3a396bfdf3..59f1e23310 100644 --- a/po/hr.po +++ b/po/hr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Croatian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Izvorni položaj" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Odustani" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Uvezi datoteke" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Najveća veličina datoteke zapisnika" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Odaberite tablice" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Nema baza podataka" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nazivi stupaca" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Generiraj lozinku" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generiraj" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Pon" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeksi" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u lijevom okviru" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Postavi glavni okvir" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2684,123 +2691,123 @@ msgstr "" "Najnovija verzija je %s objavljena na %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy msgid ", latest stable version:" msgstr "Izradi relaciju" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Nema baza podataka" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Izradi relaciju" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "ID poslužitelja" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "ID poslužitelja" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Opće osobine relacija" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tablice" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriraj" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ovaj upit ponovno prikaži ovdje" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Želite li zaista " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL upit" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tablice" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL upit" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2809,36 +2816,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu podataka u" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add prefix" msgid "Add table prefix" msgstr "Dodaj prefiks" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamijeni prefiks tablice" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tablicu sa prefiksom" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2846,96 +2853,96 @@ msgid "Next" msgstr "Sljedeće" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Ukupno" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binarno" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Veljača" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Ožu" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Tra" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Svi" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Lip" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Srp" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Kol" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Rujan" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Lis" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Studeno" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Prosinac" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Sij" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Velj" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Ožu" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Tra" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2943,78 +2950,78 @@ msgid "May" msgstr "Svi" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Srp" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Kol" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Ruj" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Stu" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Pro" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ned" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Pon" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Uto" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Srijeda" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "ČEtvrtak" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pet" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3022,86 +3029,86 @@ msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Sri" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ned" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Uto" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Sri" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Čet" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pet" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sub" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3110,137 +3117,137 @@ msgstr "Wiki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "bez kompresije" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Sat" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "u upotrebi" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "po sekundi" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Upotrijebi tekstualno polje" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Netočan broj porta" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Netočan broj porta" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Netočan broj porta" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Netočan broj porta" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Netočan broj porta" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Netočan broj porta" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Netočan broj porta" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Netočan broj porta" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Netočan broj porta" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Netočan broj porta" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Netočan broj porta" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Netočan broj porta" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3337,8 +3344,8 @@ msgstr "unutar upita" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Baza podataka" @@ -4276,7 +4283,7 @@ msgstr "Index %s je odbačen." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4333,8 +4340,8 @@ msgstr "Prikaz" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tablica" @@ -4729,55 +4736,55 @@ msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s." msgid "Unknown table status:" msgstr "Prikaži stanje potčinjenog" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Traži u bazi podataka" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nije pronađena!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neispravna baza podataka" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neispravan naziv tablice" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tablica %s preimenovana je u %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4785,19 +4792,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Naziv primarnog ključa mora biti \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Preimenovanje indeksa u PRIMARY nije moguće!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nema definiranih dijelova indeksa!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11767,63 +11774,63 @@ msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse." msgid "Formats text as XML with syntax highlighting." msgstr "Oblikuje tekst kao SQL upit s naglašavanjem sintakse." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Pogreška: Relacija već postoji." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Dodana je relacija FOREIGN KEY" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Dodane interne relacije" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Dodana je relacija FOREIGN KEY" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Pogreška: Relacija nije dodana." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11958,31 +11965,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "bez opisa" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12719,27 +12726,27 @@ msgstr "Rutine" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nemate dovoljno privilegija da boravite ovdje!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "U bazi podataka nisu pronađene tablice." #: libraries/rte/rte_words.lib.php:43 @@ -12767,13 +12774,13 @@ msgstr "Okidači" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nemate dovoljno privilegija da boravite ovdje!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "U bazi podataka nisu pronađene tablice." #: libraries/rte/rte_words.lib.php:57 @@ -12800,13 +12807,13 @@ msgstr "Događaj" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nemate dovoljno privilegija da boravite ovdje!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "U bazi podataka nisu pronađene tablice." #: libraries/rte/rte_words.lib.php:71 @@ -14716,7 +14723,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14834,7 +14841,7 @@ msgstr "Pri početku tablice" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14855,6 +14862,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pri početku tablice" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16549,40 +16562,47 @@ msgstr "Aktivnosti" msgid "Constraint properties" msgstr "Ograničenja za tablicu" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj prisile" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Interne relacije" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Interna relacija nije potrebna ako postoji odgovarajuća relacija FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16594,13 +16614,13 @@ msgstr "Odaberi polje za prikaz" msgid "Foreign key constraint %s has been dropped" msgstr "Onemogući provjere stranih znakova" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ograničenja za tablicu" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/hu.po b/po/hu.po index 9a8c9278ee..c1578c2fb7 100644 --- a/po/hu.po +++ b/po/hu.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-04 18:19+0000\n" "Last-Translator: Balázs Úr \n" "Language-Team: Hungarian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2306,28 +2313,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Kattintson a kijelöléshez / kijelölés megszüntetéséhez." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Az oszlopnév másolásához kattintson duplán." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Összes megjelenítése" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2336,13 +2343,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2350,100 +2357,100 @@ 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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Eredeti hossz" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "mégse" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Megszakítva" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sikerült" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importálás állapota" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Ejtse ide a fájlokat" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Először válasszon adatbázist" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "Az elem szerkeszthetővé
válik kattintással." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Ugrás a hivatkozáshoz:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Oszlopnév másolása." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Jelszó generálása" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generálás" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Több" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Panel megjelenítése" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Panel elrejtése" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Rejtett navigációs faszerkezet elemeinek megjelenítése." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Eltávolítás a fő panelről" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,41 +2460,41 @@ msgstr "" "%s, kiadás dátuma: %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", utolsó stabil verzió:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "friss" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Nézet létrehozása" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Hibajelentés küldése" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Hibajelentés beküldése" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Jelentés beállításainak megváltoztatása" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Jelentés részleteinek megjelenítése" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2495,7 +2502,7 @@ msgstr "" "Az exportálás nem teljes a PHP szinten lévő alacsony végrehajtási időkorlát " "miatt!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2505,59 +2512,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Hibák észlelhetők a kiszolgálón!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Nézze meg ennek az ablaknak az alját." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Összes mellőzése" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Végrehajtja ismét ezt a lekérdezést?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Valóban törölni szeretné ezt a könyvjelzőt?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentum került átadásra" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Argumentumok megjelenítése" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Argumentumok elrejtése" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Felhasznált idő:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2579,347 @@ msgstr "" "adatok törlése\" segíthet. Safari böngészőnél ezt a hibát általában a privát " "módú böngészés okozza." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Táblák másolása ide" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Táblaelőtag hozzáadása" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Tábla cseréje előtaggal" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tábla másolása előtaggal" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Előző" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Következő" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Ma" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Január" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Február" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Március" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Április" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Május" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Június" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Július" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Augusztus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Szeptember" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Október" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Már" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Ápr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sze" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Vasárnap" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Hétfő" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Kedd" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Szerda" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Csütörtök" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Péntek" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Szombat" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Vas" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Hét" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ked" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Sze" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Csü" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pén" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Szo" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Va" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Hé" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ke" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Sze" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Cs" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pé" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Szo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Hét" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "nincs" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Óra" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Perc" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "másodperc" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Ez a mező kötelező" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Javítsa ezt a mezőt" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Adjon meg egy érvényes e-mail címet" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Adjon meg egy érvényes URL-t" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Adjon meg egy érvényes dátumot" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Adjon meg egy érvényes dátumot (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Adjon meg egy érvényes számot" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Adjon meg egy érvényes hitelkártya számot" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Csak számjegyeket adjon meg" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Adja meg ismét ugyanazt az értéket" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Ne adjon meg {0} karakternél többet" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Adjon meg legalább {0} karaktert" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Adjon meg egy értéket {0} és {1} között" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Adjon meg egy érvényes dátumot vagy időt" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Adjon meg egy érvényes HEX bemenetet" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3010,8 +3017,8 @@ msgstr "Újra lekérdezés" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Adatbázis" @@ -3813,7 +3820,7 @@ msgstr "A(z) %s index eldobása megtörtént." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3873,8 +3880,8 @@ msgstr "Nézet" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tábla" @@ -4235,39 +4242,39 @@ msgstr "Ez a MySQL kiszolgáló nem támogatja a(z) %s tárolómotort." msgid "Unknown table status:" msgstr "Ismeretlen táblaállapot:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "A(z) „%s” forrás adatbázis nem található!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "A(z) „%s” cél adatbázis nem található!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Érvénytelen adatbázis:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Érvénytelen táblanév:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A(z) %1$s tábla átnevezése %2$s névre megtörtént." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nem sikerült elmenteni a tábla UI beállításait!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4276,7 +4283,7 @@ msgstr "" "Tábla UI beállításainak tisztítása sikertelen (lásd $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4286,19 +4293,19 @@ msgstr "" "\"%s\" UI érték mentése sikertelen. A változtatás az oldal frissítése után " "nem jelenik meg. Ellenőrizze, hogy a tábla struktúrája megváltozott-e." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Az elsődleges kulcs nevének \"PRIMARY\"-nak kell lennie!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Nem nevezhető át PRIMARY-re az index!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nincs meghatározott indexrész!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11046,47 +11053,47 @@ msgstr "JSON-ként formázza a szöveget szintaxis kiemeléssel." msgid "Formats text as XML with syntax highlighting." msgstr "XML-ként formázza a szöveget szintaxis kiemeléssel." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Hiba: A kapcsolat már létezik." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Az IDEGEN KULCS kapcsolat hozzáadása megtörtént." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Hiba: nem sikerült hozzáadni az IDEGEN KULCS kapcsolatot!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Hiba: hiányzó index az oszlopokról." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Hiba: a relációs szolgáltatások le vannak tiltva!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "A belső kapcsolat hozzáadása megtörtént." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Hiba: nem sikerült hozzáadni a belső kapcsolatot!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Az IDEGEN KULCS kapcsolat eltávolítása megtörtént." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Hiba: nem sikerült eltávolítani az IDEGEN KULCS kapcsolatot!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Hiba: nem sikerült eltávolítani a belső kapcsolatot!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "A belső kapcsolat eltávolítása megtörtént." @@ -11209,11 +11216,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Jelentkezzen be újra a phpMyAdminba a frissített beállítófájl betöltéséhez." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "nincs leírás" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11223,7 +11230,7 @@ msgstr "" "adatbázis létrehozásához. El kellene mennie bármelyik adatbázis „Műveletek” " "lapjára, hogy ott beállítsa a phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11232,13 +11239,13 @@ msgstr "" "%sHozzon létre%s egy „phpmyadmin” nevű adatbázist, és állítsa be ott a " "phpMyAdmin beállítástárolóját." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "A phpMyAdmin beállítástároló %slétrehozása%s a jelenlegi adatbázisban." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Hiányzó phpMyAdmin beállítástároló táblák %slétrehozása%s." @@ -11914,26 +11921,29 @@ msgid "routine" msgstr "eljárás" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Önnek nincs meg a szükséges jogosultsága eljárás létrehozásához" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Nem található %1$s nevű eljárás a(z) %2$s adatbázisban" #: libraries/rte/rte_words.lib.php:43 @@ -11954,12 +11964,15 @@ msgid "trigger" msgstr "eseményindító" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Önnek nincs meg a szükséges jogosultsága eseményindító létrehozásához" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Nem található %1$s nevű eseményindító a(z) %2$s adatbázisban" #: libraries/rte/rte_words.lib.php:57 @@ -11980,12 +11993,15 @@ msgid "event" msgstr "esemény" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Önnek nincs meg a szükséges jogosultsága esemény létrehozásához" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nem található %1$s nevű esemény a(z) %2$s adatbázisban" #: libraries/rte/rte_words.lib.php:71 @@ -13807,7 +13823,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13908,7 +13924,7 @@ msgstr "Váratlan utasítás kezdet." msgid "Unrecognized statement type." msgstr "Felismerhetetlen utasítástípus." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Nem volt korábban elindított tranzakció." @@ -13929,6 +13945,12 @@ msgstr "A kikötés ezen típusa korábban fel lett dolgozva." msgid "Unrecognized keyword." msgstr "Felismerhetetlen kulcsszó." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Váratlan utasítás kezdet." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Az entitás neve várt." @@ -15421,38 +15443,45 @@ msgstr "Műveletek" msgid "Constraint properties" msgstr "Megszorítás tulajdonságai" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Csak az indexszel rendelkező oszlopok lesznek megjelenítve. Lent létrehozhat " "egy indexet." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Idegen kulcs megszorítás" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Megszorítás hozzáadása" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Belső kapcsolatok" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Belső kapcsolat" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Nincs szükség belső kapcsolatra, ha létezik megfelelő IDEGEN KULCS kapcsolat." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Válassza ki a megjelenítendő oszlopot:" @@ -15461,11 +15490,11 @@ msgstr "Válassza ki a megjelenítendő oszlopot:" msgid "Foreign key constraint %s has been dropped" msgstr "A(z) %s idegen kulcs megszorítás el lett dobva" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Megkötés neve" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Oszlop hozzáadása" diff --git a/po/hy.po b/po/hy.po index 135344d67c..c624d1d7af 100644 --- a/po/hy.po +++ b/po/hy.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-12-18 18:19+0000\n" "Last-Translator: Andrey Aleksanyants \n" "Language-Team: Armenian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Կտտացրեք՝ նշելու/ապանշելու համար։" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Երկկտտացրեք՝ սյունակի անունը պատճենելու համար։" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Կտտացրեք ելնող սլաքը՝
սյունակի տեսանելիությունը փոխարկելու համար։" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Ցուցադրել բոլորը" -#: js/messages.php:581 +#: js/messages.php:587 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 +2340,13 @@ msgstr "" "պահպանելուց հետո ցանցավորման խմբագրման, նշատուփի, խմբագրման և ջնջման " "հղումների հետ կապված հատկությունները կարող են չաշխատել։" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Տրամադրեք վավերական տասնվեցերորդական տող։ Վավերական նշաններ են հանդիսանում " "0-9, A-F։" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2347,103 +2354,103 @@ msgstr "" "Իսկապե՞ս եք ցանկանում ցուցադրել բոլոր տողերը։ Մեծ աղյուսակի դեպքում դա կարող " "է խանգարել դիտարկչի աշխատանքը։" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Սկզբնական երկարություն" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "չեղարկել" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Ընդհատված" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Հաջողում" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Ներմուծել կարգավիճակը" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Քաշեք ֆայլերը այստեղ" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Սկզբից նշեք տվյալների բազան" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Տպել" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Դուք կարող եք խմբագրել արժեքների մեծ մասը՝
դրանց վրա անմիջապես " "երկկտտացնելով։" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Դուք կարող եք նաև խմբագրել տվյալների մեծ մասը
անմիջապես դրանց վրա " "կտտացնելով։" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Անցնել հղմանը՝" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Պատճենել սյունակի անունը։" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "Աջ-կտտացրեք սյունակի անունը՝ այն պատճենելու համար։" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Ստեղծել գաղտնաբառը" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Ստեղծել" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Ավելին" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Ցուցադրել փեղկը" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Թաքցնել փեղկը" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Ցուցադրել թաքնված նավարկման ստորակարգման տարրերը։" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Կապել հիմնական փեղկին" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ապակապել հիմնական փեղկից" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "Հարցված էջը չի գտնվել պատմության մեջ, հնարավոր է որ այն սպառվել է։" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2453,27 +2460,27 @@ msgstr "" "այն։ Ամենավերջին տարբերակն է՝ %s, թողարկված՝ %s։" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", վերջին կայուն տարբերակն է՝" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "արդի է" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Ստեղծել ներկայացում" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Ուղարկել սխալի զեկույցը" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2481,15 +2488,15 @@ msgstr "" "Տեղի է ունեցել JavaScript-ի ճակատագրական սխալը։ Ցանկանու՞մ եք ուղարկել սխալի " "զեկույցը։" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Փոխել զեկուցման կայանքները" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Ցուցադրել զեկույցի մանրամասները" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2497,7 +2504,7 @@ msgstr "" "Ձեր արտահանումը թերի է՝ PHP-ի մակարդակում կատարման ժամանակի ցածր սահմանաչափի " "պատճառով։" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2507,60 +2514,60 @@ msgstr "" "ժամանակ որոշ դաշտերը կարող են անտեսվել՝ PHP-ի կազմաձևի max_input_vars արժեքի " "պատճառով։" -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Սպասարկչում հայտնաբերվել են որոշակի սխալներ։" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Նայեք ընթացիկ պատուհանի ներքևի մասը։" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Անտեսել բոլորը" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "Ձեր կայանքներին համապատասխան դրանք այժմ ներառվում են, խնդրում ենք սպասել։" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Կատարե՞լ այս հարցումը ևս մեկ անգամ։" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Իսկապե՞ս եք ցանկանում ջնջել այս էջանիշը։" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" "SQL-ի վրիպազերծման տեղեկությունները ստանալու ընթացքում տեղի է ունեցել սխալ։" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s հարցում կատարվեց %s անգամ %s վայրկյանում։" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "փոխանցվեց %s փաստարկ" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Ցուցադրել փաստարկները" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Թաքցնել փաստարկները" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Տևողությունը՝" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2569,353 +2576,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Կրկնապատկել տվյալների բազան" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Ավելացնել աղյուսակին նախածանցը՝" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix:" msgid "Replace table with prefix" msgstr "Փոխարինել աղյուսակի նախածանցը՝" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Կրկնապատկել աղյուսակը նախածանցով" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Նախորդ" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Հաջորդ" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Այսօր" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Հունվարի" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Փետրվարի" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Մարտի" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Ապրիլի" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Մայիսի" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Հունիսի" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Հուլիսի" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Օգոստոսի" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Սեպտեմբերի" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Հոկտեմբերի" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Նոյեմբերի" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Դեկտեմբերի" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Հնվ" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Փտվ" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Մրտ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Ապր" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Մյս" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Հնս" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Հյս" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Օգս" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Սպտ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Հկտ" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Նյմ" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Դկտ" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Կիրակի" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Երկուշաբթի" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Երեքշաբթի" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Չորեքշաբթի" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Հինգշաբթի" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Ուրբաթ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Շաբաթ" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Կիր" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Երկ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Երք" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Չրք" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Հնգ" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ուր" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Շբթ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Կի" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Եկ" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Եք" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Չք" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Հն" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Ու" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Շբ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Շաբ" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "թ." -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Ժամ" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Րոպե" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Վայրկյան" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Այս դաշտը պարտադիր է" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Ուղղեք այս դաշտը" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Տրամադրեք վավերական էլ-փոստի հասցեն" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Տրանադրեք վավերական URL-ը" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Տրամադրեք վավերական ամսաթիվը" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Տրանադրեք վավերական ամսաթիվը ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Տրամադրեք վավերական թիվը" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Տրամադրեք վավերական վարկային քարտի համարը" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Մուտքագրեք միայն թվանշանները" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Մուտքագրեք նույն արժեքը ևս մեկ անգամ" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ ավել" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Խնդրում ենք մուտքագրել {0} նշանից ոչ պակաս" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Խնդրում ենք մուտքագրել արժեքը՝ {0}-ի և {1}-ի միջև երկարությամբ" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ի և {1}-ի միջև" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից պակաս կամ հավասար" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Խնդրում ենք մուտքագրել արժեքը {0}-ից ավել կամ հավասար" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Խնդրում ենք վավերական ամսաթիվը և ժամանակը" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Խնդրում ենք մուտքագրել վավերական տասնվեցերորդական արժեքը" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3015,8 +3022,8 @@ msgstr "Կրկնել հարցումը" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Տվյալների բազա" @@ -3815,7 +3822,7 @@ msgstr "%s ցուցակագիրը ջնջվեց։" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3875,8 +3882,8 @@ msgstr "Ներկայացում" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Աղյուսակ" @@ -4240,46 +4247,46 @@ msgstr "Այս MySQL սպասարկիչը չի աջակցում աղյուսակ msgid "Unknown table status:" msgstr "Աղյուսակի անհայտ կարգավիճակ՝" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` ելակետային տվյալների բազան չի գտնվել։" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` նպատակային տվյալների բազան չի գտնվել։" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Անվավեր տվյալների բազան՝" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Անվավեր աղյուսակի անունը՝" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Չհաջողվեց վերանվանել աղյուսակը %1$s-ից %2$s։" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s աղյուսակը վերանվանվել է %2$s-ին։" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Չհաջողվեց պահպանել աղյուսակի միջերեսի նախընտրանքները։" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4287,19 +4294,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Առաջնային բանալիի անունը պետք է լինի \"PRIMARY\"։" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Հնարավոր չէ՝ վերանվանել ցուցակագիրը PRIMARY անունով։" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Ցուցակագրի մասերը սահմանված չեն։" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s-ի արտաքին բանալիի ստեղծման սխալ (ստուգեք տվյալների տեսակները)" @@ -10545,47 +10552,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Սխալ՝ կապակցումը արդեն իսկ առկա է։" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Սխալ՝ հնարավոր չէ ավելացնել արտաքին բանալիի կապակցումը։" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Սխալ՝ սյունակ(ներ)ի ցուցակագիրը բացակայում է։" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Սխալ՝ կապակցման հատկությունները կասեցված են։" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Ավելացվել է մերքին կապակցումը։" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Սխալ՝ հնարավոր չէ ավելացնել ներքին կապակցումը։" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Արտաքին բանալիի կապակցումը ջնջվեց։" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Սխալ՝ հնարավոր չէ հեռացնել արտաքին բանալիի կապակցումը։" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Սխալ՝ հնարավոր չէ ջնջել ներքին կապակցումը։" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Ներքին կապակցումը ջնջվեց։" @@ -10701,31 +10708,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "նկարագրություն չկա" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11384,27 +11391,30 @@ msgid "routine" msgstr "գործընթացը" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" -msgstr "" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create a routine." +msgstr "Դուք չունեք իրադարձություն ստեղծելու համար անհրաժեշտ արտոնությունները" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." +msgstr "%2$s տվյալների բազայում %1$s անունով ձգանը չի գտնվել" #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11424,12 +11434,15 @@ msgid "trigger" msgstr "ձգան" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" -msgstr "" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create a trigger." +msgstr "Դուք չունեք իրադարձություն ստեղծելու համար անհրաժեշտ արտոնությունները" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "%2$s տվյալների բազայում %1$s անունով ձգանը չի գտնվել" #: libraries/rte/rte_words.lib.php:57 @@ -11450,12 +11463,15 @@ msgid "event" msgstr "իրադարձություն" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Դուք չունեք իրադարձություն ստեղծելու համար անհրաժեշտ արտոնությունները" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "%2$s տվյալների բազայում %1$s անունով իրադարձությունը չի գտնվել" #: libraries/rte/rte_words.lib.php:71 @@ -13095,7 +13111,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13198,7 +13214,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13219,6 +13235,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected characters on line %s." +msgid "Unexpected ordering of clauses." +msgstr "Անսպասելի նշաններ %s տողում։" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14663,35 +14685,42 @@ msgstr "Գործողություններ" msgid "Constraint properties" msgstr "Սահմանափակման հատկություններ" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Ավելացնել սահմանափակում" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Ներքին կապակցումներ" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Ներքին կապակցում" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14700,11 +14729,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "Արտաքին բանալիի %s սահմանափակումը ջնջվեց" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Սահմանափակման անվանում" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Ավելացնել սյունակ" diff --git a/po/ia.po b/po/ia.po index 53f3eba10e..7e93bec6bf 100644 --- a/po/ia.po +++ b/po/ia.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-18 12:15+0000\n" "Last-Translator: Giovanni Sora \n" "Language-Team: Interlingua - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2320,28 +2327,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Pulsa pro seliger/deseliger." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Duple pulsa pro copiar le nomine de columna." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Monstra omnes" -#: js/messages.php:581 +#: js/messages.php:587 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 +2357,13 @@ msgstr "" "modificar, copiar, marcar, deler le grillia poterea non functionar post " "salveguardar." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2364,107 +2371,107 @@ msgstr "" "Vermente tu vole vider omne rangos? Pro un grande tabella isto poterea vader " "in crash le navigator." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Fortia original" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "cancella" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortate" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Successo" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Depone files hic" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Prime selige un base de datos" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Vade al ligamine:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copia nomine de columna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Genera contrasigno" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genera" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Altere" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Monstra pannello" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Cela pannello" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Monstra elementos de arbore de navigation celate." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Ligamine con pannello principal" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Leva ligamine ex pannello principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2474,27 +2481,27 @@ msgstr "" "actualisation. Le version plus nove e %s, liverate le %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", ultime version stabile:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "actualisate" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Invia reporto de errores" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Submitte reporto de error" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2502,15 +2509,15 @@ msgstr "" "Un error fatal de JavaScript ha occurrite. Tu vole inviar un reporto de " "error?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Modifica preferentias de reporto" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Monstra detalios de reporto" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2518,7 +2525,7 @@ msgstr "" "Tu exportation es incomplete, debite a un basse limite de tempore de " "execution al nivello de PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2528,62 +2535,62 @@ msgstr "" "alcun del campos poterea esser ignorate, debite al configuration de " "max_input_vars de PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Alcun errores ha essite relevate sur le servitor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Pro favor tu al basso de iste fenestra." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignora Omne" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executa novemente iste query?" -#: js/messages.php:703 +#: js/messages.php:709 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:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries executate %s vices in %s secundas." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argumento(s) passate" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Monstra argumentos" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Cela argumentos" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempore utilisate:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2599,347 +2606,347 @@ msgstr "" "Website Data\" pote adjutar. In Safari, tal problema es solitemente causate " "per \"Navigation de Modo Private - i.e. Private Mode Browsing\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copia tabellas in" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Adde prefixo de tabella" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Reimplacia tabella con prefixo" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia tabella con prefixo" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Mense previe" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Mense proxime" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hodie" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Januario" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februario" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Martio" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maio" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Junio" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Julio" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Augusto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Septembre" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Octobre" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembre" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Decembre" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Dominica" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Lunedi" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Martedi" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Mercuridi" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Jovedi" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Venerdi" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sabbato" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Jov" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sept" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendario-mense-anno" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "necun" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuta" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Secunda" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Iste campo es requirite" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Pro favor corrige iste campo" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Pro favor inserta un valide adresse de e-posta" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Pro favor inserta un valide URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Pro favor inserta un valide data" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Pro favor inserta un nomine valide data (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Pro favor inserta un numero valide" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Pro favor inserta un numero valide de carta de credito" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Pro favor inserta solmente digitos" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Pro favor inserta novemente le mesme valor" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Pro favor inserta plus que {0} characteres" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Pro favor inserta al minus {0} characteres" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Pro favor inserta un valor inter {0} e {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Pro favor inserta un major o equal a {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Pro favor inserta un data o tempore valide" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Pro favor inserta un valide ingresso HEX" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3041,8 +3048,8 @@ msgstr "Repite Query" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de datos" @@ -3843,7 +3850,7 @@ msgstr "Indice %s ha essite delite." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3903,8 +3910,8 @@ msgstr "Vista" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabula" @@ -4267,39 +4274,39 @@ msgstr "Iste servitor MySQL non supporta lemotor de immagazinage %s." msgid "Unknown table status:" msgstr "Stato de tabella incognite:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Il non trovava base de datos de fonte '%s'!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Il non trovava base de datos objectivo '%s'!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Base de datos invalide:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nomine de tabella invalide:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Il falleva renominar tabella ab %1$s a %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabella %1$s ha essite renominate a %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Il non pote salveguarda preferentias UI de tabella!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4308,7 +4315,7 @@ msgstr "" "Il falleva nettar preferentias de UI de tabella (vide $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4319,19 +4326,19 @@ msgstr "" "essera mantenite post que tu recarga iste pagina. Pro favor controla que le " "structura del tabella ha essite modificate." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Le nomine del clave primari debe esser \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Non pote renominar indice a PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nulle partes de indice definite!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11041,49 +11048,49 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Error: le relation ja existe." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relation de FOREIGN KEY ha essite addite." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" "Error: FOREIGN_KEY - clave extranee - relation non poteva esser addite!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Error: characteristicas relational es dishabilitate!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Relation interne ha essite addite." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Error: Relation interne non poteva esser addite!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relation de FOREIGN KEY ha essite removite." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" "Error: FOREIGN KEY - clave extranee - relation non poteva esser removite!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Error: Relation non poteva esser removite!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relation interne ha essite removite." @@ -11199,18 +11206,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11219,7 +11226,7 @@ msgstr "" "%sCreate%s un base de datos nominate 'phpmyadmin' e configura le " "configuration de immagazinage de phpMyAdmin ci." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11227,7 +11234,7 @@ msgstr "" "%sCrea%s le immagazinage de configuration de phpMyAdmin in le base de datos " "currente." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11871,27 +11878,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "Il non ha tabulas in le base de datos." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11911,13 +11919,14 @@ msgid "trigger" msgstr "disbloca" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "Il non ha tabulas in le base de datos." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11937,13 +11946,14 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "Il non ha tabulas in le base de datos." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -13553,7 +13563,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13653,7 +13663,7 @@ msgstr "Un initio de instruction non expectate." msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13674,6 +13684,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Un initio de instruction non expectate." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15112,35 +15128,42 @@ msgstr "Actiones" msgid "Constraint properties" msgstr "Limita proprietates" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Adde un limite" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relationes interne" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Selige columna de monstrar:" @@ -15149,11 +15172,11 @@ msgstr "Selige columna de monstrar:" msgid "Foreign key constraint %s has been dropped" msgstr "Limites de clave externe %s ha essite abandonate" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Adde columna" diff --git a/po/id.po b/po/id.po index 71b6f0077b..02857a8814 100644 --- a/po/id.po +++ b/po/id.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-05 20:48+0000\n" "Last-Translator: Prasna Lukito \n" -"Language-Team: Indonesian " -"\n" +"Language-Team: Indonesian \n" "Language: id\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -64,11 +64,12 @@ msgstr "Komentar tabel:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -518,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Sukses" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Gagal" @@ -618,7 +619,7 @@ msgstr "Perintah \"DROP DATABASE\" dinonaktifkan." msgid "Could not load the progress of the import." msgstr "Tidak dapat memuat perubahan dari impor." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -643,7 +644,7 @@ msgstr "" msgid "General settings" msgstr "Pengaturan umum" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -978,8 +979,8 @@ msgstr "" "set karakter tidak kompatibel, mungkin ada kehilangan data dan kehilangan " "data ini mungkin TIDAK dapat dipulihkan hanya dengan mengubah kembali " "kolom pemeriksaan. Untuk mengkonversi data yang ada, disarankan untuk " -"menggunakan kolom fitur editing (\"Ubah\" Link) di halaman struktur tabel. " -"" +"menggunakan kolom fitur editing (\"Ubah\" Link) di halaman struktur tabel. " #: js/messages.php:102 msgid "" @@ -1054,7 +1055,7 @@ msgstr "Anda perlu menambahkan paling tidak satu kolom." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Pratinjau SQL" @@ -1517,7 +1518,7 @@ msgstr "Jelaskan hasil" msgid "Status" msgstr "Status" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1971,7 +1972,7 @@ msgid "Second step of normalization (2NF)" msgstr "Langkah kedua normalisasi (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Selesai" @@ -2050,7 +2051,7 @@ msgstr "Dependensi belum dipilih!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Simpan" @@ -2129,7 +2130,7 @@ msgstr "Pilih dua kolom yang berbeda" msgid "Data point content" msgstr "Isi titk data" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2186,6 +2187,15 @@ msgstr "" "di nilai-nilai ini secara langsung jika diinginkan" #: js/messages.php:528 +#, fuzzy +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL menerima nilai tambahan yang tidak dapat terpilih oleh slider; kunci " +"di nilai-nilai ini secara langsung jika diinginkan" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2193,24 +2203,24 @@ msgstr "" "Sebagai indikasi telah ada perubaha di halaman ini; konfirmasi akan " "ditampilkan untuk mengabaikan perubahan" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Pilih kunci rujukan" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Pilih Foreign Key" -#: js/messages.php:536 +#: js/messages.php:542 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:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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,78 +2228,78 @@ msgstr "" "Anda belum menyimpan perubahan pada susunan. Mereka akan hilang jika Anda " "tidak menyimpannya. Apakah Anda ingin melanjutkan?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Nama halaman" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Simpan halaman" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 #, fuzzy #| msgid "Select page" msgid "Save page as" msgstr "simpan halaman sebagai" -#: js/messages.php:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Buka halaman" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Hapus halaman" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Belum ada nama" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Pilih halaman untuk lanjut" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Masukan halaman yang benar" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "Apakah Anda ingin menyimpan perubahan ke halaman ini?" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Halaman berhasil dihapus" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Ekspor skema relasi" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Modifikasi telah disimpan" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Tambahkan opsi untuk kolom \"%s\"." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d objek dibuat." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Kirim" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Tekan escape untuk membatalkan perubahan." -#: js/messages.php:564 +#: js/messages.php:570 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 +2307,15 @@ msgstr "" "Anda telah mengedit beberapa data dan belum di simpan. Apakah anda yakin " "akan meninggalkan halaman ini sebelum menyimpan data?" -#: js/messages.php:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Seret untuk menyusun ulang." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "KIik untuk menyortir hasil dari kolom ini." -#: js/messages.php:570 +#: js/messages.php:576 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2315,26 +2325,26 @@ msgstr "" "DESC.
- Kontrol+Klik atau Alt+Click (Mac: Shift+Option+Click) untuk " "menghapus kolom dari ORDER BY clause" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klik untuk menambahkan/menghapus tanda." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Klik dua kali untuk menyalin nama kolom." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Klik tanda panah ke bawah
untuk beralih visibilitas kolom." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Tampilkan semua" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2343,11 +2353,11 @@ msgstr "" "grid, kotak centang, Edit, Copy dan Delete link mungkin tidak bekerja " "setelah disimpan." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2355,110 +2365,110 @@ msgstr "" "Apakah anda ingin melihat semua baris? Tabel ukuran besar bisa membuat " "peramban lambat." -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "String asli" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Batal" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Batalkan" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sukses" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Impor status" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Letakkan berkas disini" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Pilih database dulu" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Pergi ke tautan:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Salin nama kolom." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "Klik-kanan nama kolom untuk menyalinnya ke clipboard." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Buatkan kata sandi" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Buatkan" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Lainnya" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Tampilkan Panel" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Sembunyikan Panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Tampilkan navigasi pohon item tersembunyi." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Link ke panel utama" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Unlink dari panel utama" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2468,31 +2478,31 @@ msgstr "" "untuk meng-upgrade. Versi terbaru adalah %s, dirilis pada %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", versi stabil terakhir:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "Mutakhir" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Buat tampilan" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Kirim laporan kesalahan" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Kirim Laporan Kesalahan" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2500,26 +2510,26 @@ msgstr "" "Kesalhaan fatal JavaScript telah terdeteksi. Anda ingin mengirimkan laporan " "kesalahan?" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Ubah Pengaturan Pelaporan" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Tampilkan Detail Laporan" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2529,66 +2539,66 @@ msgstr "" "beberapa bidang mungkin dibatalkan, karena konfigurasi max_input_vars dari " "PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Kesalahan terdeteksi di server!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Silahkan lihat di bagian bawah jendela ini." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Abaikan" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Jalankan kueri ini lagi?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Anda yakin akan menghapus penanda ini?" -#: js/messages.php:705 +#: js/messages.php:711 #, fuzzy msgid "Some error occurred while getting SQL debug info." msgstr "Terjadi beberapa kesalahan saat mendapatkan info SQL debug." -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Kueri tereksekusi" -#: js/messages.php:708 +#: js/messages.php:714 #, fuzzy, php-format msgid "%s argument(s) passed" msgstr "%s argumen lulus" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Perlihatkan Komentar tabel" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sembunyikan hasil pencarian" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 #, fuzzy msgid "Time taken:" msgstr "Waktu yang diperlukan:" -#: js/messages.php:712 +#: js/messages.php:718 #, fuzzy msgid "" "There was a problem accessing your browser storage, some features may not " @@ -2604,383 +2614,383 @@ msgstr "" "\"Offline data Situs web\" mungkin bisa membantu. Dalam Safari, masalah " "tersebut umumnya disebabkan oleh \"Mode Private Browsing\"." -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin basis data ke" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Tambahkan prefiks tabel" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Ganti prefiks tabel" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Salin tabel dengan prefiks" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Sblm" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Brkt" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hari ini" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Januari" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februari" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Maret" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mei" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agustus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Agu" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Des" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Minggu" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Senin" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Selasa" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Rabu" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Kamis" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Jumat" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sabtu" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Min" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Sen" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Kam" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Min" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Sn" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Sl" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Rb" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Km" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Jm" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Mingguan" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "Kalender-bulan-tahun" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Kosong" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Jam" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Menit" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Detik" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Wajib diisi" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Gunakan text field" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Masukan angka yang valid" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Masukan angka yang valid" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Masukan angka yang valid" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Masukan nilai panjang yang valid!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Masukan angka yang valid" -#: js/messages.php:908 +#: js/messages.php:914 #, fuzzy msgid "Please enter no more than {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy msgid "Please enter at least {0} characters" msgstr "Silakan masukkan captcha yang benar!" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Masukkan nilai panjang karakter antara {0} dan {1}" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "Masukan angka yang valid" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "Masukan angka yang valid" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Tolong masukkan angka yang valid!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3080,8 +3090,8 @@ msgstr "Kueri ulang" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Basis data" @@ -3914,7 +3924,7 @@ msgstr "Indeks %s telah dihapus." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3974,8 +3984,8 @@ msgstr "Gambarkan" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4338,39 +4348,39 @@ msgstr "Server MySQL ini tidak mendukung mesin penyimpanan %s." msgid "Unknown table status:" msgstr "status tabel tidak diketahui:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Sumber Basis data `%s` tidak ditemukan!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Target Basis data `%s` tidak ditemukan!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Basis data tidak valid:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nama tabel tidak valid:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Galat sewaktu mengganti nama table %1$s menjadi %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s telah berubah nama menjadi %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Tidak dapat menyimpan preferensi UI tabel!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4379,7 +4389,7 @@ msgstr "" "Gagal membersihkan tabel UI preferences (lihat $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4390,19 +4400,19 @@ msgstr "" "terus-menerus setelah Anda me-refresh halaman ini. Silakan periksa jika " "struktur tabel telah berubah." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kunci primer harus \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Gagal ubah nama Indeks ke PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Bagian indeks belum diberi definisin!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Kesalahan membuat kunci asing pada %1$s (periksa tipe data)" @@ -11769,47 +11779,47 @@ msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks." msgid "Formats text as XML with syntax highlighting." msgstr "Format teks sebagai kueri SQL dengan penyorotan sintaks." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Galat: relasi sudah ada." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relasi FOREIGN KEY telah ditambahkan." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Galat: Relasi FOREIGN KEY tidak dapat ditambahkan.!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Galat: index hilang pada kolom." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Galat: Fitur Relasi tidak diaktifkan!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Relasi internal telah ditambahkan." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Galat: Relasi internal tidak dapat ditambahkan!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relasi FOREIGN KEY telah dihapus." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Galat: Relasi FOREIGN KEY tidak dapat dihapus!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Galat: Relasi Internal tidak dapat dihapus!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relasi internal telah dihapus." @@ -11941,11 +11951,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "Login ulang ke phpMyAdmin untuk memuat file konfigurasi yang baru." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "tidak ada deskripsi" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11955,7 +11965,7 @@ msgstr "" "database bernama 'phpmyadmin'. Anda bisa ke tab 'Operasi' database untuk " "mengatur penyimpanan konfigurasi phpMyAdmin disana." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11963,14 +11973,14 @@ msgid "" "configuration storage there." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabel penyimpanan konfigurasi phpMyAdmin tidak ditemukan" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12702,30 +12712,39 @@ msgid "routine" msgstr "routine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Anda tidak punya hak akses untuk membuat routine" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "Tidak ada rutinitas ditemukan dengan nama %1$s dalam database %2$s. Anda " "mungkin tidak memiliki otoritas untuk menyunting rutinitas ini" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Tidak ada rutinitas bernama %1$s ditemukan di database %2$s. Anda mungkin " "tidak memiliki otoritas untuk melihat/mengkespor rutinitas ini" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Routine dengan nama %1$s tidak ditemukan dalam basis data %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12746,12 +12765,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Anda tidak punya hak akses untuk membuat trigger" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Trigger dengan nama %1$s tidak ditemukan dalam basis data %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12773,12 +12795,15 @@ msgid "event" msgstr "event" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Anda tidak punya hak akses untuk membuat event" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Event dengan nama %1$s tidak ditemukan dalam basis data %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14808,7 +14833,7 @@ msgstr "Akhir tak terduga dari ekspresi CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 #, fuzzy msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Ada sebuah simbol yang menghilang! Kata kunci dasar tidak dapat digunakan " @@ -14939,7 +14964,7 @@ msgstr "Pada Awal Tabel" msgid "Unrecognized statement type." msgstr "Belum diakui jenis pernyataan." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 #, fuzzy msgid "No transaction was previously started." msgstr "Tidak ada transaksi sebelumnya dimulai." @@ -14965,6 +14990,12 @@ msgstr "Jenis klausa sebelumnya diurai." msgid "Unrecognized keyword." msgstr "kata kunci yang belum diakui." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pada Awal Tabel" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16682,7 +16713,14 @@ msgstr "Tindakan" msgid "Constraint properties" msgstr "Ketidakleluasaan untuk tabel" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 #, fuzzy msgid "" "Only columns with index will be displayed. You can define an index below." @@ -16690,27 +16728,27 @@ msgstr "" "Hanya kolom dengan indeks akan ditampilkan. Anda dapat menentukan indeks di " "bawah ini." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 #, fuzzy msgid "Foreign key constraint" msgstr "Batasan kunci asing" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan batasan" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relasi internal" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relasi internal" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 #, fuzzy msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " @@ -16718,7 +16756,7 @@ msgid "" msgstr "" "Relasi internal tidak diperlukan bila hubungan FOREIGN KEY yang sesuai." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16730,13 +16768,13 @@ msgstr "Pilih kolom untuk ditampilkan" msgid "Foreign key constraint %s has been dropped" msgstr "Batas foreign key" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ketidakleluasaan untuk tabel" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" @@ -17842,9 +17880,9 @@ msgstr "" "dari nilai variabel-variabel ini. Untuk menghilangkan ini anda akan harus " "menulis ulang pertanyaan anda untuk menghindari kondisi tersebut (dalam " "tabel sementara: Hadirnya BLOB atau TEXT kolom atau adanya kolom lebih besar " -"dari 512 bytes) sebagaimana disebutkan dalam awal dari " -"Artikel oleh the Pythian Group" +"dari 512 bytes) sebagaimana disebutkan dalam awal dari Artikel oleh the " +"Pythian Group" #: libraries/advisory_rules.txt:267 #, php-format diff --git a/po/it.po b/po/it.po index 5c2e19838a..ea8f0e8ea8 100644 --- a/po/it.po +++ b/po/it.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-27 08:34+0000\n" "Last-Translator: Stefano Martinelli \n" -"Language-Team: Italian " -"\n" +"Language-Team: Italian \n" "Language: it\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -63,11 +63,12 @@ msgstr "Commenti alla tabella:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -518,7 +519,7 @@ msgstr "" msgid "Succeeded" msgstr "Riuscito" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Fallito" @@ -624,7 +625,7 @@ msgid "Could not load the progress of the import." msgstr "" "Non è stato possibile caricare la progressione del processo di importazione." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -649,7 +650,7 @@ msgstr "" msgid "General settings" msgstr "Impostazioni generali" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1063,7 +1064,7 @@ msgstr "Devi aggiungere almeno un campo." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Anteprima SQL" @@ -1526,7 +1527,7 @@ msgstr "Spiega l'output" msgid "Status" msgstr "Stato" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1980,7 +1981,7 @@ msgid "Second step of normalization (2NF)" msgstr "Seconda fase di normalizzazione (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Fatto" @@ -2060,7 +2061,7 @@ msgstr "Nessuna dipendenza selezionata!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salva" @@ -2142,7 +2143,7 @@ msgstr "Seleziona due campi diversi" msgid "Data point content" msgstr "Contenuto del punto" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2194,6 +2195,18 @@ msgstr "" "slider; se lo desideri, puoi inserire direttamente questi valori" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL accetta ulteriori valori non selezionabili con il movimento dello " +"slider; se lo desideri, puoi inserire direttamente questi valori" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2201,24 +2214,24 @@ msgstr "" "Indica che hai modificato questa pagina; ti verrà chiesta una conferma prima " "di abbandonare le modifiche" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Seleziona le chiavi referenziali" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Seleziona Foreign Key" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "Seleziona la chiave primaria o una chiave univoca!" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 msgid "" "You haven't saved the changes in the layout. They will be lost if you don't " "save them. Do you want to continue?" @@ -2226,76 +2239,76 @@ msgstr "" "Non hai salvato i cambiamenti della disposizione. Questi cambiamenti saranno " "persi se non li salvi. Vuoi procedere?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Nome della pagina" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Salva pagina" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Apri pagina" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Cancella pagina" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Senza titolo" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Scegli una pagina per continuare" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Inserisci un nome di pagina valido" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "Vuoi salvare le modifiche apportate alla pagina corrente?" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Pagina eliminata con sucesso" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Esporta schema relazionale" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Le modifiche sono state salvate" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Aggiungi un'opzione al campo \"%s\"." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d oggetto/i creato/i." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Invia" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Premi Esc per annullare la modifica." -#: js/messages.php:564 +#: js/messages.php:570 msgid "" "You have edited some data and they have not been saved. Are you sure you " "want to leave this page before saving the data?" @@ -2303,15 +2316,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Trascina per riordinare." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Clicca per ordinare i risultati secondo questa colonna." -#: js/messages.php:570 +#: js/messages.php:576 msgid "" "Shift+Click to add this column to ORDER BY clause or to toggle ASC/DESC.
- Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2321,28 +2334,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Clicca per selezionare/deselezionare." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Doppio click per copiare il nome della colonna." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostra tutti" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2351,13 +2364,13 @@ msgstr "" "modifica, copia ed eliminazione potrebbero non funzionare dopo il " "salvataggio." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2365,105 +2378,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Lunghezza originale" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Annulla" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Fallito" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Riuscito" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importa stato" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Rilascia i file qui" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Prima seleziona un database" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Vai al link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copia il nome del campo." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Genera password" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genera" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Più" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Mostra pannello" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Nascondi pannello" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostra elementi nascosti dell'albero di navigazione." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Collega al pannello principale" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Scollega dal pannello principale" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2473,27 +2486,27 @@ msgstr "" "l'aggiornamento. La versione più recente è la %s, rilasciata il %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", versione stabile piú recente:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aggiornata" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Crea vista" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Invia rapporto di errore" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Invia segnalazione di errore" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2501,15 +2514,15 @@ msgstr "" "Un errore fatale di JavaScript si è verificato. Vuoi inviare una " "segnalazione?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Modifica le impostazioni della segnalazione" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Mostra i dettagli della segnalazione" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2517,7 +2530,7 @@ msgstr "" "L'esportazione non è stata completata, a causa di un limite di tempo troppo " "basso nell'esecuzione di script PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2527,62 +2540,62 @@ msgstr "" "alcuni campi saranno ignorati, a causa della configuazione max_input_vars di " "PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Sono stati rilevati alcuni errori sul server!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Guarda in fondo a questa finestra." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignora Tutto" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Eseguire di nuovo questa query?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Sei sicuro di voler eliminare questo bookmark?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s query eseguite %s volte in %s secondi." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argomento(i) passati" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Mostra argomenti" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Nascondi argomenti" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo utilizzato:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2609,347 +2622,347 @@ msgstr "" "Nel browser Safari il problema è causato spesso dalla modalità di " "navigazione Privata." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copia le tabelle su" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Aggiungi un prefisso alla tabella" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Sostituisci tabella con prefisso" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copia tabella col prefisso" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Prec" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Prossimo" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Oggi" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Gennaio" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Febbraio" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Marzo" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Aprile" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maggio" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Giugno" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Luglio" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agosto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Setttembre" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Ottobre" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembre" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dicembre" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Gen" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mag" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Giu" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Lug" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Ott" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dic" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Domenica" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Lunedì" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Martedì" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Mercoledì" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Giovedì" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Venerdì" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sabato" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mer" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Gio" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ven" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Do" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Me" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Gi" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Ve" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sa" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sett" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Nessuno" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Ora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Secondo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Questo campo è obbligatorio" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Si prega di correggere questo campo" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Per favore inserisci un indirizzo email valido" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Si prega di inserire un URL valido" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Si prega di inserire una data valida" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Si prega di inserire una data valida ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Si prega di inserire un numero valido" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Si prega di inserire un numero di carta di credito valido" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Si prega di inserire solo cifre" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Si prega di inserire lo stesso valore di nuovo" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Si prega di inserire non più di {0} caratteri" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Si prega di inserire almeno {0} caratteri" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Immettere un valore compreso tra {0} e {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Immettere un valore maggiore o uguale a {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Si prega di inserire una data o un'ora valida" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Si prega di inserire un input HEX valido" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3048,8 +3061,8 @@ msgstr "Re-query" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3847,7 +3860,7 @@ msgstr "L'indice %s è stato eliminato." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3907,8 +3920,8 @@ msgstr "Vista" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabella" @@ -4270,40 +4283,40 @@ msgstr "Questo server MySQL non supporta il motore di memorizzazione %s." msgid "Unknown table status:" msgstr "stato della tabella sconosciuto:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Database di origine `%s` non é stato trovato!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Tema `%s` non é stato trovato!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Database non valido:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nome di tabella non valido:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Errore nel rinominare la tabella %1$s in %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "La tabella %1$s è stata rinominata %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" "Impossibile salvare la tabella delle preferenze per l'interfaccia utente!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4312,7 +4325,7 @@ msgstr "" "Impossibile ripulire la tabella delle preferenze UI (v. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4323,19 +4336,19 @@ msgstr "" "saranno mantenuti se ricaricate questa pagina. Controllate se la struttura " "della tabella è cambiata." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Il nome della chiave primaria deve essere \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Impossibile rinominare l'indice a PRIMARIO!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nessuna parte di indice definita!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Errore nel creare una foreign key su %1$s (controlla il tipo di dati)" @@ -11134,47 +11147,47 @@ msgstr "Formatta il testo come JSON con evidenziazione della sintassi." msgid "Formats text as XML with syntax highlighting." msgstr "Formatta il testo come XML con evidenziazione della sintassi." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Errore: relazione già esistente." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "La relazione FOREIGN KEY è stata aggiunta." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Errore: non è stato possibile aggiungere la relazione FOREIGN KEY!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Errore: manca l'indice su campo/i." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Errore: Le funzionalità relazionali sono disabilitate!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "La relazioni interna è stata aggiunta." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Errore: non è stato possibile aggiungere la relazione interna!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "La relazione FOREIGN KEY è stata rimossa." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Errore: non è stato possibile rimuovere la relazione FOREIGN KEY!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Errore: non è stato possibile rimuovere la relazione interna!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "La relazione interna è stata rimossa." @@ -11296,11 +11309,11 @@ msgstr "" "Rieffettua il login in phpMyAdmin per caricare il file della configurazione " "aggiornato." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "nessuna descrizione" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11311,7 +11324,7 @@ msgstr "" "database per impostare in quel database la memorizzazione della " "configurazione di phpMyAdmin." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11320,14 +11333,14 @@ msgstr "" "%sCrea%s un database denominato 'phpmyadmin' e imposta la configurazione di " "storage phpMyAdmin lì." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s la configurazione salvata di phpMyAdmin nel database corrente." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12015,30 +12028,39 @@ msgid "routine" msgstr "routine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Non hai i necessari privilegi per creare una routine" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "Non c'è alcuna routine di nome %1$s nel database %2$s. Potresti non avere le " "autorizzazioni necessarie per editare questa routine" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Non c'è alcuna routine di nome %1$s nel database %2$s. Potresti non avere le " "autorizzazioni necessarie per visualizzare/esportare questa routine" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Non é stata trovata alcuna routine con nome %1$s nel database %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12059,12 +12081,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Non hai i necessari privilegi per creare un trigger" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Non é stata trovato alcun trigger con nome %1$s nel database %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12085,12 +12110,15 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Non hai i necessari privilegi per creare un evento" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Non é stata trovato alcun evento con nome %1$s nel database %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13931,8 +13959,12 @@ msgid "Unexpected end of CASE expression" msgstr "Inattesa fine dell'espressione CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Era atteso un nome di simbolo! Un termine riservato non può essere usato " @@ -14034,7 +14066,7 @@ msgstr "Inizio di statement inatteso." msgid "Unrecognized statement type." msgstr "Tipo statement non riconosciuto." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Non è stata iniziata alcuna transazione in precedenza." @@ -14055,6 +14087,12 @@ msgstr "Questo tipo di clausola è stata esaminata in precedenza." msgid "Unrecognized keyword." msgstr "Parola chiave non riconosciuta." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Inizio di statement inatteso." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Era atteso il nome dell'entity." @@ -15541,31 +15579,38 @@ msgstr "Azioni" msgid "Constraint properties" msgstr "Proprietà del vincolo" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Saranno visualizzati solo campi con indice. Puoi definire un indice qui " "sotto." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Vincolo della chiave esterna" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Aggiungi vincolo" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relazioni interne" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15573,7 +15618,7 @@ msgstr "" "Una relazione interna non %è necessaria, quando una corrispondente relazione " "FOREIGN KEY esiste." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Scegli il campo da mostrare:" @@ -15582,11 +15627,11 @@ msgstr "Scegli il campo da mostrare:" msgid "Foreign key constraint %s has been dropped" msgstr "Il vincolo %s della foreign key è stato eliminato" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Nome del vincolo" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Aggiungi campo" diff --git a/po/ja.po b/po/ja.po index 426024b74c..0c163ed9b5 100644 --- a/po/ja.po +++ b/po/ja.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-21 06:46+0000\n" "Last-Translator: yanagimoto \n" "Language-Team: Japanese - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2305,32 +2312,32 @@ msgstr "" "す
Ctrl+クリック(またはAlt+クリック、(Macの場合はShift+Option+クリッ" "ク)すると、この列をORDER BY句から削除します" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "クリックでカラムを反転/解除" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ダブルクリックでカラム名をコピー。" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "すべて表示" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2339,11 +2346,11 @@ msgstr "" "ボックス、編集、コピー、削除のリンクに関連する機能は、保存後に動作しない場合" "があります。" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "有効な 16 進数の文字列を入力してください。有効な文字は 0-9、A-F です。" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2351,109 +2358,109 @@ msgstr "" "本当にすべての行を表示しますか? 大きなテーブルはブラウザをクラッシュさせるこ" "とがあります。" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "元の長さ" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "キャンセル" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中断" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "成功" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "インポートの状態" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "ここにファイルをドロップします" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "最初にデータベースを選択してください" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "印刷" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "ほとんどの値は、直接ダブルクリック
することでも、編集できます。" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "ほとんどの値は、直接クリック
することでも、編集できます。" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "リンク先へ移動する:" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "カラム名のコピー。" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "右クリックでカラム名をクリップボードにコピーしてください。" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "パスワードを生成する" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "生成する" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "その他" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "パネルを表示" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "パネルを隠す" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "左のフレーム内にロゴを表示します。" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "メインフレームの詳細設定" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "リクエストされたページが履歴にありません。おそらく有効期限切れです。" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2463,48 +2470,48 @@ msgstr "" "します。最新バージョンは %s で、%s にリリースされています。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", 最終安定バージョン:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "最新版" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "ビューを作成する" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "エラーレポートの送信" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "エラーレポートを送信" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "JavaScript の致命的なエラーが発生しました。エラー報告を送信しますか?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "レポート設定の変更" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "エラーレポートの詳細を表示" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPで設定された低い実行時間制限のため、エクスポートは完了しませんでした!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2514,60 +2521,60 @@ msgstr "" "ると、PHPのmax_input_vars設定の制限により、いくつかのフィールドは無視されるこ" "とがあります。" -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "サーバー上でいくつかのエラーが検出されました!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "このウィンドウの一番下を見てください。" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "全て無視" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "設定に従って現在これらを送信しています。気長にお待ちください。" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "このクエリをもう一度実行しますか?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "このブックマークを本当に削除しますか?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "SQL デバッグ情報を取得中にいくつかのエラーが発生しました。" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s クエリは、%s 回を%s 秒で実行しました。" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s個の引数が渡されました" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "引数の表示" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "引数を非表示" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "所要時間:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2583,351 +2590,351 @@ msgstr "" "合は一般的に「プライベートモード」の利用がこの問題を引き起こすことがありま" "す。" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "テーブルのコピー先" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "テーブル接頭辞の追加" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "テーブル名の接頭辞を付け替える" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "接頭辞を付け替えてテーブルをコピーする" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "前月" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "翌月" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "今日" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "1 月" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "2 月" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "3 月" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "4 月" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "5 月" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "6 月" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "7 月" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "8 月" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "9 月" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "10 月" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "11 月" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "12 月" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "1 月" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "2 月" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "3 月" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "4 月" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "5 月" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "6 月" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "7 月" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "8 月" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "9 月" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "10 月" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "11 月" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "12 月" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "日" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "月" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "火" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "水" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "木" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "金" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "土" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "日" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "月" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "火" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "水" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "木" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "金" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "土" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "月" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "火" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "水" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "木" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "金" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "土" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "時" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "分" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "秒" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "このフィールドは必須です" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "この項目を修正してください" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "有効なメールアドレスを入力してください" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "有効なURLを入力してください" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "有効な日付を入力してください" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "有効な日付(ISO準拠)を入力してください" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "有効な数値を入力してください" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "有効なクレジットカード番号を入力してください" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "数字のみを入力してください" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "同じ値をもう一度入力してください" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "{0}文字以上を入力してください" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "少なくとも {0}文字以上を入力してください" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "{0} から {1} の間の値を入力してください" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "{0} から {1} の間の値を入力してください" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "{0} 以下の値を入力してください" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "{0} 以上の値を入力してください" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "有効な日付または時刻を入力してください" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "有効な 16 進数の値を入力してください" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3026,8 +3033,8 @@ msgstr "サブクエリ" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "データベース" @@ -3904,7 +3911,7 @@ msgstr "インデックス %s を削除しました。" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3964,8 +3971,8 @@ msgstr "ビュー" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "テーブル" @@ -4348,46 +4355,46 @@ msgstr "この MySQL サーバは %s ストレージエンジンをサポート msgid "Unknown table status:" msgstr "不明なテーブルステータス: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "元にするデータベース `%s` が見つかりません!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "対象先のデータベース `%s` が見つかりません!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "不正なデータベースです" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "テーブル名が不正です" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "テーブル名を %1$s から %2$s に変更するときにエラーが発生しました" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "テーブル %1$s の名称を %2$s に変更しました。" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "テーブルに対する環境設定が保存できません" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4396,7 +4403,7 @@ msgstr "" "テーブルに対する環境設定のクリーンアップに失敗しました (参照 $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4406,19 +4413,19 @@ msgstr "" "環境プロパティ「%s」が保存できません。ページ更新の際、変更箇所が維持されるこ" "とはないでしょう。テーブル構造を変更されたのであれば確認してみてください。" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主キーの名前は PRIMARY でなければなりません!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "インデックス名を PRIMARY に変更することはできません!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "インデックス部分が定義されていません!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11852,61 +11859,61 @@ msgstr "テキストの内容を SQL クエリとみなし、構文ハイライ msgid "Formats text as XML with syntax highlighting." msgstr "テキストの内容を SQL クエリとみなし、構文ハイライト表示します。" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "エラー: リレーションはすでに存在しています。" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "外部キーを追加しました" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "エラー: リレーション機能は無効になっています!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "内部リレーションを追加しました" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "外部キーを追加しました" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "エラー: リレーションを追加できませんでした。" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12046,18 +12053,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "更新した設定ファイルを読み込むために phpMyAdmin にログインし直します。" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "説明がありません" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12065,14 +12072,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 環境保管領域用のテーブルが不明" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12802,26 +12809,29 @@ msgid "routine" msgstr "ルーチン" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "ルーチンを作成する特権がありません" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "データベース %2$s に %1$s という名前のルーチンはありません" #: libraries/rte/rte_words.lib.php:43 @@ -12842,12 +12852,15 @@ msgid "trigger" msgstr "トリガ" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "トリガを作成する特権がありません" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "データベース %2$s に %1$s という名前のトリガはありません" #: libraries/rte/rte_words.lib.php:57 @@ -12868,12 +12881,15 @@ msgid "event" msgstr "イベント" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "イベントを作成する特権がありません" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "データベース %2$s に %1$s という名前のイベントはありません" #: libraries/rte/rte_words.lib.php:71 @@ -14743,7 +14759,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14865,7 +14881,7 @@ msgstr "テーブルの先頭" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "開始されているトランザクションはありません。" @@ -14888,6 +14904,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "認識できないキーワードです。" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "テーブルの先頭" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16551,38 +16573,45 @@ msgstr "アクション" msgid "Constraint properties" msgstr "テーブルの制約" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "外部キー制約" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "制約を追加する" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "内部リレーション" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "対応する外部リレーションが存在する場合、内部リレーションは必要ありません。" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16594,13 +16623,13 @@ msgstr "表示するカラムの選択" msgid "Foreign key constraint %s has been dropped" msgstr "外部キー制約" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "テーブルの制約" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/ka.po b/po/ka.po index 091c3b4a46..ad4d08d519 100644 --- a/po/ka.po +++ b/po/ka.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Georgian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "საწყისი მდებარეობა" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "გაუქმება" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "შეწყვეტილია" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "ფაილების შემოტანა" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "ცხრილების არჩევა" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "დაბეჭდვა" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "სვეტების სახელები" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "პაროლის დაგენერირება" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "დაგენერირება" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "ორშ" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ყველაფრის ჩვენება" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "ახალი ველის დამატება" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "მარცხენა ჩარჩოში ლოგოს ჩვენება" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize export options" msgid "Unlink from main panel" msgstr "Customize export options" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2678,126 +2685,126 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "უკანასკნელ ვერსიაზე შემოწმება" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "მონაცემთა ბაზები არაა" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Create relation" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "სერვერის პორტი" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "სერვერის პორტი" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Other core settings" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "Report title" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "იგნორირება" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy msgid "Execute this query again?" msgstr "SQL მოთხოვნები" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "ნამდვილად გსურთ " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "ცხრილის კომენტარები" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL Query box" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2813,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copy database to" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "ახალი ველის დამატება" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Replace table data with file" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "წინა" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2845,96 +2852,96 @@ msgid "Next" msgstr "შემდეგი" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "სულ" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "ბინარული" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "მარ" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "აპრ" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "მაი" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "ივნ" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "ივლ" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "აგვ" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "ოქტ" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "იან" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "თებ" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "მარ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "აპრ" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2942,78 +2949,78 @@ msgid "May" msgstr "მაი" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ივნ" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ივლ" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "აგვ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "სექ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ოქტ" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "ნოე" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "დეკ" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "კვი" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "ორშ" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "სამ" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "პარ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3021,86 +3028,86 @@ msgid "Sun" msgstr "კვი" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "ორშ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "სამ" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "ოთხ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "ხუთ" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "პარ" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "შაბ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "კვი" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "ორშ" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "სამ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "ოთხ" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "ხუთ" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "პარ" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "შაბ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3109,137 +3116,137 @@ msgstr "ვიკი" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "არაა" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "in use" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "წამში" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "გამოიყენე ტექსტური ველი" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "პორტის ნომერი არასწორია" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3336,8 +3343,8 @@ msgstr "მოთხოვნაში" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "მონაცემთა ბაზა" @@ -4261,7 +4268,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4317,8 +4324,8 @@ msgstr "ხედო" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "ცხრილი" @@ -4715,54 +4722,54 @@ msgstr "ამ MySQL სერვერს არ აქვს %s ძრავ msgid "Unknown table status:" msgstr "Show slave status" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "მონაცემთა ბაზაში ძებნა" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "არასწორი მონაცემთა ბაზა" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ცხრილის არასწორი სახელი" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1 to %2" msgid "Failed to rename table %1$s to %2$s!" msgstr "Error renaming table %1$s to %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Table %s has been renamed to %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4770,19 +4777,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11855,61 +11862,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "ცვლილებები შენახულია" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "Internal relations" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "ცვლილებები შენახულია" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "ფაილის წაკითხვა ვერ მოხერხდა" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -12043,31 +12050,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12808,27 +12815,27 @@ msgstr "Routines" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "You don't have sufficient privileges to be here right now!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "No tables found in database." #: libraries/rte/rte_words.lib.php:43 @@ -12858,13 +12865,13 @@ msgstr "ტრიგერები" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "You don't have sufficient privileges to be here right now!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "No tables found in database." #: libraries/rte/rte_words.lib.php:57 @@ -12893,13 +12900,13 @@ msgstr "მოვლენა" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "You don't have sufficient privileges to be here right now!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "No tables found in database." #: libraries/rte/rte_words.lib.php:71 @@ -14645,7 +14652,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14759,7 +14766,7 @@ msgstr "ცხრილის დასაწყისში" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14780,6 +14787,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "ცხრილის დასაწყისში" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16475,43 +16488,50 @@ msgstr "მოქმედებები" msgid "Constraint properties" msgstr "Routines" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Foreign key limit" msgid "+ Add constraint" msgstr "Foreign key limit" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Internal relations" msgid "Internal relations" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Internal relations" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16523,13 +16543,13 @@ msgstr "აირჩიეთ საჩვენებელი ველი" msgid "Foreign key constraint %s has been dropped" msgstr "Foreign key limit" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Routines" msgid "Constraint name" msgstr "Routines" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/kk.po b/po/kk.po index 1e5ba8503b..02161d852e 100644 --- a/po/kk.po +++ b/po/kk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kazakh - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Белгіні алу/орнату үшін шертіңіз" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "Атын көшіру үшін өріске тышқанмен екі рет шерту жасаңыз" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Бәрін көрсету" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Сызық" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "Импорт" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Барлығын ерекшелеу" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Сілтемеге өту" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Баған атын көшіру" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Шығару" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Тағы" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бәрін көрсету" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Индекстерді жасыру" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show indexes" msgid "Show hidden navigation tree items." msgstr "Индекстерді көрсету" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Hide indexes" msgid "Link with main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Hide indexes" msgid "Unlink from main panel" msgstr "Индекстерді жасыру" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2531,117 +2538,117 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "Соңғы тұрақты болжам:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Баптауын өзгерту" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Бәрін көрсету" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Елемеу" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "Сіз шынымен де сұраныстың орындалуын қалайсыз бе \"%s\"?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Кестеге түсініктеме" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Іздеу нәтижелерін жасыру" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,357 +2657,357 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Дерекқорының көшірілуі" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Кестениң префиксін ауыстыру" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Кестені префикс пен бірге көшіру" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Алдыңғы" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Келесі" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Бүгін" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Қаңтар" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Ақпан" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Наурыз" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Сәуір" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Мамыр" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Маусым" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Шілде" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Тамыз" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Қыркүйек" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Қазан" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Қараша" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Желтоқсан" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Қаң" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Ақп" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Нау" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Сәу" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Мам" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Мау" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Шіл" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Там" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Қыр" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Қаз" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Қар" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Жел" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Жексенбі" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Дүйсенбі" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Сейсенбі" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Сәрсенбі" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Бейсенбі" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Жұма" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Сенбі" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Жек" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Дүй" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Сей" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Сәр" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Бей" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Жұм" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Сен" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Жк" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Дс" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Сс" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Бс" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Жм" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Сн" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Апт" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Сағат" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Минут" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Секунд" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Барлығын ерекшелеу" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please add at least one variable to the series" msgid "Please enter at least {0} characters" msgstr "Тәңiр жарылқасын, ең болмаса топтамаға бiр айнымалы қосыңыз" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3095,8 +3102,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Дерекқор" @@ -3978,7 +3985,7 @@ msgstr "Индекс %s жойылған болатын." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4034,8 +4041,8 @@ msgstr "Түр" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Кесте" @@ -4413,50 +4420,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Кесте бойынша:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Search in database" msgid "Invalid database:" msgstr "Дерекқорынан іздеу" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Кесте бойынша:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4464,19 +4471,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10853,59 +10860,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relation has been added." msgstr "%s кестесі аластанды" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Table %s has been emptied." msgid "FOREIGN KEY relation has been removed." msgstr "%s кестесі аластанды" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файлды оқу мүмкін емес" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relation has been removed." @@ -11027,31 +11034,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11701,27 +11708,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "Дерекқорында, ешбір кестелер табылмады." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11741,13 +11749,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "Дерекқорында, ешбір кестелер табылмады." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11767,13 +11776,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "Дерекқорында, ешбір кестелер табылмады." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -13441,7 +13451,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13554,7 +13564,7 @@ msgstr "Кестениң префиксін ауыстыру" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13575,6 +13585,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Replace table prefix" +msgid "Unexpected ordering of clauses." +msgstr "Кестениң префиксін ауыстыру" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15107,39 +15123,46 @@ msgstr "Әрекет" msgid "Constraint properties" msgstr "Шектеу қою" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Шектеу қою" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Table %s has been emptied." msgid "Internal relations" msgstr "%s кестесі аластанды" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "You have to choose at least one column to display" msgid "Choose column to display:" @@ -15151,13 +15174,13 @@ msgstr "Сұраныс орындалуы үшін, көрсетілімдегі msgid "Foreign key constraint %s has been dropped" msgstr "Сыртқы кілттерді тексерілісі:" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Add constraints" msgid "Constraint name" msgstr "Шектеу қою" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add column" diff --git a/po/km.po b/po/km.po index a4a23de161..cc88f28fef 100644 --- a/po/km.po +++ b/po/km.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Central Khmer - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "បោះបង់" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "នាំចូល" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ជ្រើសទាំងអស់" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2429,111 +2436,111 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "ប្ដូរ​ការ​កំណត់" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "មតិយោបល់​តារាង៖" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2542,377 +2549,377 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "No databases selected." msgid "Copy tables to" msgstr "មិន​បាន​ជ្រើស​មូលដ្ឋាន​ទិន្នន័យ។" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid email address" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date ( ISO )" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter the same value again" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter at least {0} characters" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value between {0} and {1}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "សូម​បញ្ចូល​ប្រវែង​ត្រឹម​ត្រូវ!" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a value greater than or equal to {0}" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid date or time" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "សូម​បញ្ចូល​តម្លៃ​លេខ​ត្រឹម​ត្រូវ!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3006,8 +3013,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "មូលដ្ឋានទិន្នន័យ" @@ -3819,7 +3826,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3875,8 +3882,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "តារាង" @@ -4236,46 +4243,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4283,19 +4290,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10487,55 +10494,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "កំហុស៖ មិន​អាច​បន្ថែម​ចំណង​សម្ព័ន្ធ​បាន!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10655,31 +10662,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11324,27 +11331,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "រកមិនឃើញតារាងនៅក្នុងមូលដ្ឋានទិន្នន័យ។" #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11364,13 +11372,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "រកមិនឃើញតារាងនៅក្នុងមូលដ្ឋានទិន្នន័យ។" #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11390,13 +11399,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "រកមិនឃើញតារាងនៅក្នុងមូលដ្ឋានទិន្នន័យ។" #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -13020,7 +13030,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13131,7 +13141,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13152,6 +13162,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14625,37 +14639,44 @@ msgstr "សកម្មភាព" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add %s column(s) to index" msgid "+ Add constraint" msgstr "បន្ថែម​ជួរ​ឈរ %s ទៅ​សន្ទស្សន៍" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14664,11 +14685,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/kn.po b/po/kn.po index 9e39c5f1e7..2680baeead 100644 --- a/po/kn.po +++ b/po/kn.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-07-24 13:05+0200\n" "Last-Translator: Shameem Ahmed A Mulla \n" "Language-Team: Kannada - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2326,105 +2333,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,349 +2440,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "ಯಾವುದೇ ಕೋಷ್ಟಕಗಳು ಆಯ್ಕೆ ಮಾಡಲಿಲ್ಲ." -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "ಜನವರಿ" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "ಫೆಬ್ರವರಿ" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "ಮಾರ್ಚ್" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "ಏಪ್ರಿಲ್" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "ಮೇ" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "ಜೂನ್" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "ಜುಲೈ" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ಆಗಸ್ಟ್" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "ಸಪ್ಟೆಂಬರ್" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "ಅಕ್ಟೋಬರ್" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "ನವೆಂಬರ್" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "ಡಿಸೆಂಬರ್" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ಜನ" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "ಫೆಬ್ರು" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "ಮಾ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "ಏಪ್ರಿ" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "ಮೇ" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ಜೂ" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ಜು" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ಆಗ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ಸೆಪ್ಟೆಂ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ಅಕ್ಟೋ" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "ನವೆಂ" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "ಡಿಸೆಂ" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "ರವಿವಾರ" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "ಸೋಮವಾರ" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "ಮಂಗಳವಾರ" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "ಬುಧವಾರ" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "ಗುರುವಾರ" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "ಶುಕ್ರವಾರ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "ಶನಿವಾರ" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "ರ" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "ಸೋ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "ಮಂ" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "ಬು" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "ಗು" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "ಶು" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "ಶನಿ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ರ" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "ಸೋ" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "ಮಂ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "ಬು" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "ಗು" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "ಶು" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "ಶನಿ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2869,8 +2876,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3659,7 +3666,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3715,8 +3722,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "ಟೇಬಲ್" @@ -4076,46 +4083,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4123,19 +4130,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10262,47 +10269,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10418,31 +10425,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11084,27 +11091,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "ಯಾವುದೇ ಟೇಬಲ್ ಡೇಟಾಬೇಸನ್ನಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11124,13 +11132,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "ಯಾವುದೇ ಟೇಬಲ್ ಡೇಟಾಬೇಸನ್ನಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11150,13 +11159,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "ಯಾವುದೇ ಟೇಬಲ್ ಡೇಟಾಬೇಸನ್ನಲ್ಲಿ ಕಂಡುಬಂದಿಲ್ಲ." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -12770,7 +12780,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12870,7 +12880,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12891,6 +12901,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14331,35 +14345,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14368,11 +14389,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/ko.po b/po/ko.po index 791cc42702..a02dee2e30 100644 --- a/po/ko.po +++ b/po/ko.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-06 17:38+0000\n" "Last-Translator: Lee Joon Haeng \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" @@ -63,11 +63,12 @@ msgstr "테이블 설명:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -513,7 +514,7 @@ msgstr "" msgid "Succeeded" msgstr "성공함" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "실패함" @@ -611,7 +612,7 @@ msgstr "\"DROP DATABASE\" 구문은 허락되지 않습니다." msgid "Could not load the progress of the import." msgstr "가져오기에 필요한 절차를 로드할 수 없습니다." -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -635,7 +636,7 @@ msgstr "" msgid "General settings" msgstr "일반 설정" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -954,9 +955,11 @@ msgid "" "column(s) editing feature (the \"Change\" Link) on the table structure page. " "" msgstr "" -"이 작업을 통해, MySQL은 콜레이션 간 데이터값들의 매핑을 시도합니다. 만약 문자셋들이 호환되지 않는다면, 데이터가 손실 될 수 " -"있으며 이렇게 손실된 데이터는 컬럼의 콜레이션(들)을 되돌리는 것으로 간단하게 복원되지 않을을 것입니다. 이미 존재하는 " -"데이터를 변환하기 위해, 테이블 구조 페이지의 컬럼(들) 수정 기능(\"변경\" 링크)을 이용하는 것을 추천합니다." +"이 작업을 통해, MySQL은 콜레이션 간 데이터값들의 매핑을 시도합니다. 만약 문자" +"셋들이 호환되지 않는다면, 데이터가 손실 될 수 있으며 이렇게 손실된 데이터는 " +"컬럼의 콜레이션(들)을 되돌리는 것으로 간단하게 복원되지 않을을 것입니" +"다. 이미 존재하는 데이터를 변환하기 위해, 테이블 구조 페이지의 컬럼(들) 수" +"정 기능(\"변경\" 링크)을 이용하는 것을 추천합니다." #: js/messages.php:102 msgid "" @@ -1029,7 +1032,7 @@ msgstr "적어도 한 개 이상의 컬럼을 추가해야 합니다." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "SQL 미리보기" @@ -1485,7 +1488,7 @@ msgstr "SQL 해석" msgid "Status" msgstr "상태" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1878,7 +1881,9 @@ msgstr "현재 리스트 검색" 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 "센트럴 목록에 컬럼이 없습니다. 데이터베이스 %s의 센트럴 컬럼 목록 중 현재 테이블에 없는 컬럼을 확인하십시오." +msgstr "" +"센트럴 목록에 컬럼이 없습니다. 데이터베이스 %s의 센트럴 컬럼 목록 중 현재 테" +"이블에 없는 컬럼을 확인하십시오." #: js/messages.php:421 msgid "See more" @@ -1926,7 +1931,7 @@ msgid "Second step of normalization (2NF)" msgstr "정규화의 두번째 단계 (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "완료" @@ -1943,7 +1948,9 @@ msgstr "선택된 부분의 의존성은 다음과 같음:" 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의 값을 결정할 수 있다는 뜻입니다." +msgstr "" +"참고: a, b -> d, f 는 컬럼 a와 컬럼 b의 결합된 값들이 컬럼 d와 컬럼 f의 값을 " +"결정할 수 있다는 뜻입니다." #: js/messages.php:444 msgid "No partial dependencies selected!" @@ -2004,7 +2011,7 @@ msgstr "의존성이 선택되지 않았습니다!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "저장" @@ -2081,7 +2088,7 @@ msgstr "두 개의 서로다른 열 선택" msgid "Data point content" msgstr "데이터 포인트 내용" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2128,32 +2135,48 @@ msgstr "암호화 키" msgid "" "MySQL accepts additional values not selectable by the slider; key in those " "values directly if desired" -msgstr "MySQL은 슬라이더로 선택되지 않는 추가값을 허용합니다; 값들을 직접 입력하길 원할 경우" +msgstr "" +"MySQL은 슬라이더로 선택되지 않는 추가값을 허용합니다; 값들을 직접 입력하길 원" +"할 경우" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL은 슬라이더로 선택되지 않는 추가값을 허용합니다; 값들을 직접 입력하길 원" +"할 경우" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" -msgstr "이 페이지를 변경했다는것을 나타냅니다; 변경사항을 적용하지 않고 나갈 경우 확인 메시지가 표시 됩니다" +msgstr "" +"이 페이지를 변경했다는것을 나타냅니다; 변경사항을 적용하지 않고 나갈 경우 확" +"인 메시지가 표시 됩니다" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "참고키 선택" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "외래키 선택" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "기본키 혹은 유니크키를 선택하십시오!" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "출력할 필드 선택" -#: js/messages.php:539 +#: js/messages.php:545 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?" @@ -2161,76 +2184,76 @@ msgstr "" "레이아웃의 변경을 저장하지 않았습니다. 저장하지 않으면, 변경사항이 손실됩니" "다. 이대로 계속 하시겠습니까?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "페이지 이름" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "페이지 저장" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "페이지를 다른 이름으로 저장" -#: js/messages.php:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "페이지 열기" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "페이지 삭제" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "제목 없음" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "계속할 페이지를 선택하세요" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "올바른 페이지 이름을 입력하세요" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "현재 페이지의 수정된 내용을 저장하겠습니까?" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "페이지 삭제 성공" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "관계 스키마를 내보내기" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "수정된 내용이 저장되었습니다" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "컬럼 \"%s\"에 대한옵션 추가 ." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d 개의 개체가 생성되었습니다." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "확인" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "편집을 취소하려면 ESC를 누르세요." -#: js/messages.php:564 +#: js/messages.php:570 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?" @@ -2238,15 +2261,15 @@ msgstr "" "일부 데이터를 변경한 후 저장하지 않았습니다. 데이터를 저장하지 않고 페이지를 " "이동하기를 원합니까?" -#: js/messages.php:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "재정렬하려면 드래그하세요." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "이 열의 값에 따라 결과를 정렬하려면 누르세요." -#: js/messages.php:570 +#: js/messages.php:576 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 " @@ -2256,26 +2279,26 @@ msgstr "" "
- Ctrl+Click 또는 Alt+Click (맥: Shift+Option+Click) 으로 ORDER BY 절로" "부터 이 컬럼 제거" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "선택/해제하려면 클릭하세요." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "칼럼명을 복사하려면 더블클릭하세요." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "칼럼보이기 여부를 바꾸려면
드롭다운 화살표를 클릭하세요." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "모두 보기" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2283,11 +2306,11 @@ msgstr "" "이 테이블에는 유일 속성을 가진 컬럼이 없습니다. 저장 시에 격자창 편집, 체크박" "스, 편집, 복사, 삭제 등의 기능이 정상적으로 동작하지 않을 수 있습니다." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "올바른 16진수 문자열을 입력하세요. 사용가능한 문자는 0-9, A-F 입니다." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2295,101 +2318,101 @@ msgstr "" "정말 모든 열을 보시겠습니까? 테이블 크기가 큰 경우 브라우저가 정지할 수 있습" "니다." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "원본 길이" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "취소" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "중지됨" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "성공" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "상태 가져오기" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "파일을 여기로 끌어오세요" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "데이터베이스를 먼저 선택하세요" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "인쇄" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "값을 더블클릭 하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "값을 클릭하여 바로 수정할 수 있습니다.
(일부 제외)." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "다음 링크로 이동 :" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "컬럼 이름 복사." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "마우스 오른쪽버튼을 클릭하여 클립보드에 컬럼 이름을 복사할 수 있습니다." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "암호 생성" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "생성" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "더보기" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "패널 표시" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "패널 숨기기" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "숨겨진 탐색 트리의 항목보기." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "매인 패널에 링크" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "매인 패널에서 링크 해제" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" "요청하신 페이지를 기록에서 찾을 수 없습니다. 만기 되었을 수도 있습니다." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2398,47 +2421,47 @@ msgstr "" "phpMyAdmin 업그레이드가 필요합니다. 최신버전은 %s이며 %s에 릴리즈 되었습니다." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", 최신 안정 버전:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "최신버전" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "뷰 생성" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "오류 보고서 전송" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "오류 보고서 제출" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "치명적인 자바스크립트 오류 발생. 오류를 전송할까요?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "보고서 설정 변경" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "보고서 상세 보기" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "PHP의 실행시간 제한에 걸려 내보내기가 완료되지 않았습니다!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2447,58 +2470,58 @@ msgstr "" "경고: 현재 페이지의 폼 필드는 %d개가 넘습니다. 폼이 전송될 때 PHP의 " "max_input_vars 설정에 의해 일부 필드가 손실될 수 있습니다." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "서버 에러가 감지되었습니다!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "이 창의 아래쪽을 보세요." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "모두 무시" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "각 설정은 현재 전송중입니다. 기다려주세요." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "이 질의를 다시 실행합니까?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "정말 이 북마크를 삭제하겠습니까?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "SQL 디버그 정보를 가져오는 중 오류가 발생하였습니다." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 쿼리를 %s 번 %s 초 안에 처리했습니다." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s개의 인수가 전달됨" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "매개변수 보이기" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "매개변수 숨기기" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "소요 시간 :" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2506,351 +2529,354 @@ msgid "" "cause such a problem, clearing your \"Offline Website Data\" might help. In " "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -"브라우저 저장소에 접근하는데 문제가 발생하여, 몇 가지 기능이 제대로 동작하지 않을 수 있습니다. 이 문제는 브라우저가 저장소를 지원하지 " -"않거나 저장소의 한계치에 도달하거나 하는 경우 발생합니다. 파이어폭스에서는 오류가 생긴 저장소가 문제가 될 수 있으며, \"오프라인 " -"웹사이트 데이터\"를 삭제하는것이 도움이 될 수 있습니다. 사파리에서는 일반적으로 \"개인 모드 브라우징\"에 의해 발생 됩니다." +"브라우저 저장소에 접근하는데 문제가 발생하여, 몇 가지 기능이 제대로 동작하지 " +"않을 수 있습니다. 이 문제는 브라우저가 저장소를 지원하지 않거나 저장소의 한계" +"치에 도달하거나 하는 경우 발생합니다. 파이어폭스에서는 오류가 생긴 저장소가 " +"문제가 될 수 있으며, \"오프라인 웹사이트 데이터\"를 삭제하는것이 도움이 될 " +"수 있습니다. 사파리에서는 일반적으로 \"개인 모드 브라우징\"에 의해 발생 됩니" +"다." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "테이블을 복사합니다" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "테이블 접두사 추가" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "접두사로 테이블 교체" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "테이블에 접두사를 추가하여 복제" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "이전" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "다음" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "오늘" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "1월" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "2월" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "3월" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "4월" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "5월" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "6월" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "7월" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "8월" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "9월" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "10월" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "11월" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "12월" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "1월" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "2월" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "3월" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "4월" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "5월" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "6월" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "7월" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "8월" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "9월" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "10월" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "11월" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "12월" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "일요일" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "월요일" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "화요일" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "수요일" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "목요일" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "금요일" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "토요일" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "일" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "월" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "화" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "수" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "목" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "금" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "토" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "일" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "월" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "화" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "수" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "목" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "금" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "토" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "주" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "없음" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "시" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "분" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "초" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "해당 항목은 필수 항목입니다" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "이 필드를 수정하세요" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "올바른 이메일 주소를 입력하세요" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "올바른 URL을 입력하세요" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "올바른 날짜를 입력하세요" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "올바른 날짜(ISO 형식)를 입력하세요" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "올바른 숫자를 입력하세요" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "올바른 신용 카드 번호를 입력하세요" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "숫자만 입력해 주세요" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "같은 값을 한번 더 입력하세요" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "{0} 글자 이하로 입력해 주세요" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "최소 {0} 글자 이상 입력해주세요" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "{0} 글자에서 {1} 글자 사이로 입력해 주세요" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "{0} 에서 {1} 사이의 값을 입력하세요" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "{0}과 같거나 작은 값을 입력하세요" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "{0}과 같거나 큰 값을 입력하세요" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "올바른 날짜 또는 시간을 입력하세요" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "올바른 HEX값을 입력하세요" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2947,8 +2973,8 @@ msgstr "다시 쿼리하기" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "데이터베이스" @@ -3740,7 +3766,7 @@ msgstr "인덱스 %s 를 제거했습니다." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3797,8 +3823,8 @@ msgstr "뷰" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "테이블" @@ -4153,39 +4179,39 @@ msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다. msgid "Unknown table status:" msgstr "알 수 없는 테이블 상태:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "원본 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "목표 데이터베이스 '%s'를 찾을 수 없습니다!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "잘못된 데이터베이스:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "잘못된 테이블 이름:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "테이블 이름 %1$s를 %2$s(으)로 바꾸는데 실패했습니다!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "테이블 %1$s을(를) %2$s(으)로 이름을 변경하였습니다." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "테이블 UI 설정을 저장할 수 없습니다!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4194,7 +4220,7 @@ msgstr "" "테이블 UI 설정을 정리하는 데 실패했습니다. ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s 를 참조하세요)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4204,19 +4230,19 @@ msgstr "" "UI 특성 %s을(를) 저장할 수 없습니다. 새로고침후에도 이 변경은 반영되지 않을것" "입니다. 테이블 구조가 변경되었는지 확인 바랍니다." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "기본 키의 이름은 반드시 PRIMARY여야 합니다!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "인덱스 이름을 PRIMARY 로 바꿀 수 없습니다!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "인덱스 부분의 정의가 없음!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s의 외래키 생성 에러 (데이터 타입을 확인하세요)" @@ -4515,7 +4541,9 @@ msgstr "모든 종류의 기하데이터 객체들의 집합" msgid "" "Stores and enables efficient access to data in JSON (JavaScript Object " "Notation) documents" -msgstr "JSON (JavaScript Object Notation) 문서로 데이터를 저장하면 데이터에 효율적으로 접근할 수 있습니다" +msgstr "" +"JSON (JavaScript Object Notation) 문서로 데이터를 저장하면 데이터에 효율적으" +"로 접근할 수 있습니다" #: libraries/TypesMySQL.php:479 msgctxt "numeric types" @@ -10751,53 +10779,53 @@ msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다." msgid "Formats text as XML with syntax highlighting." msgstr "텍스트를 SQL 쿼리형식으로 문법 강조를 합니다." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "오류: 릴레이션이 이미 존재함." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY 릴레이션이 추가됨" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "오류: 외래키 릴레이션을 추가할 수 없습니다!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "오류: 릴레이션 기능이 비활성화 되어 있음!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "내부 릴레이션이 추가됨" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "오류: 릴레이션이 추가되지 않음." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "외래키 릴레이션이 제거되었습니다." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "오류: 외래키 릴레이션을 제거할 수 없습니다!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "오류: 내부 릴레이션을 제거할 수 없습니다!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "내부 릴레이션이 제거되었습니다." @@ -10926,18 +10954,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "수정된 설정 파일을 적용하기 위해 phpMyAdmin에 다시 로그인해야 합니다." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "설명이 없습니다" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10945,14 +10973,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin 설정 공간 테이블이 없습니다" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11629,26 +11657,29 @@ msgid "routine" msgstr "루틴" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "루틴을 작성하는데 필요한 권한을 가지고 있지 않습니다" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "데이터베이스 %2$s 에 %1$s 라는 이름의 루틴이 없음" #: libraries/rte/rte_words.lib.php:43 @@ -11669,12 +11700,15 @@ msgid "trigger" msgstr "트리거" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "트리거를 생성하는데 필요한 권한을 가지고 있지 않습니다" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "데이터베이스 %2$s에 %1$s라는 트리거가 없음" #: libraries/rte/rte_words.lib.php:57 @@ -11695,12 +11729,15 @@ msgid "event" msgstr "이벤트" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "이벤트를 생성할 권한이 부족함" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "데이터베이스 %2$s에 %1$s라는 이름의 이벤트가 없음" #: libraries/rte/rte_words.lib.php:71 @@ -13419,7 +13456,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13541,7 +13578,7 @@ msgstr "테이블의 처음" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13564,6 +13601,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "테이블의 처음" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15149,36 +15192,43 @@ msgstr "실행" msgid "Constraint properties" msgstr "테이블의 제약사항" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "외래키 제약" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ 제약조건 추가" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "내부 릴레이션" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "외래키 릴레이션이 있을 경우, 거기에 해당하는 내부 릴레이션은 필요 없습니다." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "출력할 필드 선택:" @@ -15187,11 +15237,11 @@ msgstr "출력할 필드 선택:" msgid "Foreign key constraint %s has been dropped" msgstr "외래키 제약 %s 가 제거되었습니다" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/ksh.po b/po/ksh.po index fa8bf45f92..d88f79b97f 100644 --- a/po/ksh.po +++ b/po/ksh.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2014-10-02 15:09+0200\n" "Last-Translator: Purodha \n" "Language-Team: Colognian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Alle ußwähle" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "not active" msgid "Show panel" msgstr "nit aktief" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2339,105 +2346,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2446,351 +2453,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Table" msgid "Copy tables to" msgstr "Tabäll" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Alle ußwähle" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2884,8 +2891,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Dahtebangk" @@ -3686,7 +3693,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3742,8 +3749,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabäll" @@ -4108,46 +4115,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4155,19 +4162,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10326,47 +10333,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10482,31 +10489,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11149,26 +11156,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11189,12 +11196,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11215,12 +11222,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12833,7 +12840,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12933,7 +12940,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12954,6 +12961,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14392,35 +14403,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14429,11 +14447,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/ky.po b/po/ky.po index 9e0da6506b..07580076c6 100644 --- a/po/ky.po +++ b/po/ky.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Kyrgyz - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "Баарын танда" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2366,107 +2373,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,351 +2482,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Table comments:" msgid "Copy tables to" msgstr "Жадыбал жөнүндө маалымат:" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "Баарын танда" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2913,8 +2920,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Берилиштер базасы" @@ -3718,7 +3725,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3774,8 +3781,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Жадыбал" @@ -4137,46 +4144,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4184,19 +4191,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10380,59 +10387,59 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файл окулбай жатат" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10550,31 +10557,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11216,27 +11223,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "Берилиштер базасында жадыбал табылган жок." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11256,13 +11264,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "Берилиштер базасында жадыбал табылган жок." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11282,13 +11291,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "Берилиштер базасында жадыбал табылган жок." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -12904,7 +12914,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13012,7 +13022,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13033,6 +13043,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14493,39 +14507,46 @@ msgstr "Кыймыл" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "+ Add constraint" msgstr "\"%s\" мамычанын мааниси" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14535,11 +14556,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "%1$s аттуу берилиштер базасы түзүлдү." -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Value for the column \"%s\"" msgid "+ Add column" diff --git a/po/li.po b/po/li.po index 71340d83bb..2fc1ddfe35 100644 --- a/po/li.po +++ b/po/li.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-12-29 15:36+0000\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: Limburgish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2317,105 +2324,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2431,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "jannewarie" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "fibberwarie" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "miert" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "mei" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "augustus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Oer" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "secónd" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2858,8 +2865,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3646,7 +3653,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3702,8 +3709,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4063,46 +4070,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4110,19 +4117,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10241,47 +10248,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10397,31 +10404,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11063,26 +11070,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11103,12 +11110,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11129,12 +11136,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12745,7 +12752,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12845,7 +12852,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12866,6 +12873,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14293,35 +14304,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14330,11 +14348,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/lt.po b/po/lt.po index 9693041563..dc1d7f4dbb 100644 --- a/po/lt.po +++ b/po/lt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:20+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Lithuanian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Paspauskite, kad (at)pažymėti" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Rodyti viską" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Pirminė padėtis" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atšaukti" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Nutraukta" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Importuoti numatytąsias reikšmes" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pasirinkite lenteles" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Eiti pagal nuorodą" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Stulpelių vardai" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generuoti slaptažodį" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generuoti" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Daugiau" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rodyti viską" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Nerodyti indeksų" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Logotipą rodyti kairiame rėmelyje" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Adaptuoti pagrindinė rėmelį" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2609,124 +2616,124 @@ msgstr "" "atnaujinimą. Naujausia versija yra %s, išleista %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", naujausia stabili versija:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "naujausias" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Sukurti rodinį" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Serverio jungtis" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Serverio jungtis" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Keisti nustatymus" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Rodyti atidarytas lenteles" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoruoti" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rodyti šią užklausą vėl" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Įvykdytos užklausos" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Lentelės komentarai" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slėpti paieškos rezultatus" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2742,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopijuoti duomenų bazę į" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix" msgid "Add table prefix" msgstr "Pridėti lentelės priešdėlį" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Pakeisti lentelės pavadinimo priešdėlį" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopijuoti lentelę su pavadinimo priešdėliu" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "Ankstesnis" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2772,149 +2779,149 @@ msgid "Next" msgstr "Kitas" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Šiandien" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "sausio" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "vasario" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "kovo" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "balandžio" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Geg" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "birželio" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "liepos" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "rugpjūčio" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "rugsėjo" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "spalio" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "lapkričio" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "gruodžio" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Sau" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Vas" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Kov" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Bal" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Geg" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Bir" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Lie" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Rgp" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Rgs" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Spa" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Lap" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Grd" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Sekmadienis" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Pirmadienis" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Antradienis" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Trečiadienis" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Ketvirtadienis" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Penktadienis" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Šeštadienis" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2922,205 +2929,205 @@ msgid "Sun" msgstr "Sek" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pir" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ant" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Tre" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Ket" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pen" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Šeš" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Sk" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "An" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Tr" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Kt" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pn" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Št" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sav." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Ne" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Valanda" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minutė" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekundės" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Naudokite teksto įvedimo lauką" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Neteisingas jungties skaičius" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3222,8 +3229,8 @@ msgstr "SQL užklausa" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Duomenų bazė" @@ -4152,7 +4159,7 @@ msgstr "Indeksas %s ištrintas." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4209,8 +4216,8 @@ msgstr "Rodinys" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Lentelė" @@ -4606,56 +4613,56 @@ msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio." msgid "Unknown table status:" msgstr "lentelės būsena nežinoma: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Iš duomenų bazės" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Tema %s nerasta!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neteisingas duomenų bazės vardas" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neteisingas lentelės vardas" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Klaida pervadinant lentelę iš %1$s į %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Lentelė %s pervadinta į %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "Nepavyko išsaugoti lentelės naudotojo sąsajos nustatymų" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4663,19 +4670,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Pirminio rakto pavadinimas turi būti \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Negalima pervadinti indekso į PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Neaprašytos indekso dalys!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11947,63 +11954,63 @@ msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais." msgid "Formats text as XML with syntax highlighting." msgstr "Suformuoja tekstą kaip SQL užklausą su sintaksės paryškinimais." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Klaida: toks sąryšis jau yra." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY sąryšis įdėtas" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Vidinis sąryšis įdėtas" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY sąryšis įdėtas" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Klaida: Sąryšis neįdėtas." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12151,18 +12158,18 @@ msgstr "" "Iš naujo prisijunkite prie phpMyAdmin tam, kad užkrautumėte atnaujintą " "konfigūracijos failą." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Aprašymo nėra" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12170,14 +12177,14 @@ msgid "" "configuration storage there." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Trūksta phpMyAdmin nustatymų saugyklos lentelių" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12914,27 +12921,30 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" -msgstr "" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create a routine." +msgstr "Neturite pakankamai teisių sukurti įvykį" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." +msgstr "Nėra įvykio su vardu %1$s duomenų bazėje %2$s" #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -12954,13 +12964,16 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" -msgstr "" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create a trigger." +msgstr "Neturite pakankamai teisių sukurti įvykį" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." +msgstr "Nėra įvykio su vardu %1$s duomenų bazėje %2$s" #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -12980,12 +12993,15 @@ msgid "event" msgstr "įvykis" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Neturite pakankamai teisių sukurti įvykį" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nėra įvykio su vardu %1$s duomenų bazėje %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14747,7 +14763,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14867,7 +14883,7 @@ msgstr "Lentelės pradžioje" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14888,6 +14904,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Lentelės pradžioje" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16558,39 +16580,46 @@ msgstr "Veiksmas" msgid "Constraint properties" msgstr "Apribojimai lentelei" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pridėti apribojimą" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Vidiniai sąryšiai" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Vidiniai sąryšiai" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16602,13 +16631,13 @@ msgstr "Pasirinkite laukus peržiūrai" msgid "Foreign key constraint %s has been dropped" msgstr "Svetimų raktų apribojimas" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Apribojimai lentelei" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/lv.po b/po/lv.po index cc9e4a33cf..03ae089ff0 100644 --- a/po/lv.po +++ b/po/lv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-01-23 11:11+0000\n" "Last-Translator: Arturs Nikolajevs \n" "Language-Team: Latvian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Rādīt visu" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Oriģinālā pozīcija" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Atcelt" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Pārtraukts" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Importēt failus" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izvēlieties tabulas" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Nav datubāzu" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Kolonnu nosaukumi" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Mainīt paroli" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 #, fuzzy msgid "Generate" msgstr "Uzģenerēja" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "P" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Rādīt visu" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Pievienot jaunu lauku" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Rādīt režģi" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Datubāzu eksporta opcijas" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2551,122 +2558,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Nav datubāzu" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Servera versija" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Servera ID" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Servera ID" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Mainīt uzstādījumus" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Rādīt tabulas" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignorēt" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Rādīt šo vaicājumu šeit atkal" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL vaicājums" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentārs tabulai" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Slēpt meklēšanas rezultātus" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2675,38 +2682,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopēt datubāzi uz" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Pievienot jaunu lauku" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Aizvietot tabulas datus ar datiem no faila" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Iepriekšējie" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2714,96 +2721,96 @@ msgid "Next" msgstr "Nākamie" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Kopā" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binārais" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jūn" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jūl" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2811,78 +2818,78 @@ msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jūn" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jūl" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Sv" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "P" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "O" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Pk" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2890,223 +2897,223 @@ msgid "Sun" msgstr "Sv" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "P" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "O" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "T" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "C" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pk" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "S" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Sv" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "P" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "O" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "T" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "C" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Pk" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "S" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Nav" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "lietošanā" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundē" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Lietot teksta lauku" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "Lūdzu ievadiet derīgu garumu" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "Lūdzu ievadiet derīgu numuru" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3202,8 +3209,8 @@ msgstr "vaicājumā" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Datubāze" @@ -4131,7 +4138,7 @@ msgstr "Indekss %s tika izdzēsts." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4187,8 +4194,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabula" @@ -4586,50 +4593,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Rādīt tabulas" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Meklēt datubāzē" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Nav datubāzu" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "Tabulā(s):" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Servera versija" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabula %s tika pārsaukta par %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4637,19 +4644,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primārās atslēgas nosaukumam jābūt \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Nevar pārsaukt indeksu par PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nav definēto indeksa daļu!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11404,60 +11411,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Labojumi tika saglabāti" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Iekšējās relācijas" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Labojumi tika saglabāti" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Nevar nolasīt failu" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Iekšējās relācijas" @@ -11592,31 +11599,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Bez apraksta" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12327,27 +12334,27 @@ msgstr "Pievienot jaunu lauku" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Tabulas nav atrastas šajā datubāzē." #: libraries/rte/rte_words.lib.php:43 @@ -12372,13 +12379,13 @@ msgstr "Pievienot jaunu lietotāju" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Tabulas nav atrastas šajā datubāzē." #: libraries/rte/rte_words.lib.php:57 @@ -12404,13 +12411,13 @@ msgstr "Nosūtīts" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Jums nav pietiekoši tiesību, lai atrastos šeit tagad!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Tabulas nav atrastas šajā datubāzē." #: libraries/rte/rte_words.lib.php:71 @@ -14179,7 +14186,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14291,7 +14298,7 @@ msgstr "Tabulas sākumā" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14312,6 +14319,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Tabulas sākumā" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15986,39 +15999,46 @@ msgstr "Darbība" msgid "Constraint properties" msgstr "Ierobežojumi tabulai" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Pievienot ierobežojumus" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Iekšējās relācijas" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Iekšējās relācijas" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16030,13 +16050,13 @@ msgstr "Izvēlieties, kuru lauku rādīt" msgid "Foreign key constraint %s has been dropped" msgstr "Svešo atslēgu pārbaude:" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ierobežojumi tabulai" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/mk.po b/po/mk.po index 36a4cdba74..a8f63f8a1b 100644 --- a/po/mk.po +++ b/po/mk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-30 14:17+0000\n" "Last-Translator: Dragan Zlatkovski \n" "Language-Team: Macedonian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имиња на колони" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "прикажи ги сите" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оргинална позиција" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинато" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Увоз на податотека" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Избери табели" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печати" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Базата на податоци не постои" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имиња на колони" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Генерирање на лозинка" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Генерирај" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "прикажи ги сите" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додади ново поле" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежа" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Опции за извоз на бази на податоци" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2603,121 +2610,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Базата на податоци не постои" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Верзија на серверот" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "ID на серверот" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "ID на серверот" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Општи особини на релациите" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Прикажи табели" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнорирај" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи го повторно овој упит" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Дали навистина сакате да " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL упит" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментар на табелата" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2726,36 +2733,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај ја базата на податоци во" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додади ново поле" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замени го префиксот на табелата" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копирај табела со префикс" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2763,96 +2770,96 @@ msgid "Next" msgstr "Следен" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Вкупно" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарен" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "мај" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2860,78 +2867,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "дек" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Вто" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2939,199 +2946,199 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Вто" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Саб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Вто" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Саб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "во секунда" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поле" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Изберете база на податоци" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please choose a page to edit" msgid "Please enter a valid date or time" msgstr "Изберете страница која менувате" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3227,8 +3234,8 @@ msgstr "во упитот" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "База на податоци" @@ -4158,7 +4165,7 @@ msgstr "Клучот %s е избиршан." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4214,8 +4221,8 @@ msgstr "Поглед" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Табела" @@ -4614,50 +4621,50 @@ msgstr "Овој MySQL сервер не подржува %s вид на скл msgid "Unknown table status:" msgstr "Прикажи табели" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Пребарување низ базата на податоци" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Базата на податоци не постои" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside table(s):" msgid "Invalid table name:" msgstr "во табела(и):" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Верзија на серверот" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табелата %s е преименувана во %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4665,19 +4672,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Името на примарниот клуч мора да биде \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Не можам да го променам клучот во PRIMARY (примарен) !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Делови од клучот не се дефинирани!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11490,60 +11497,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Измените се сочувани" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Внатрешни релации" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Измените се сочувани" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Податотеката не е можно да се прочита" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Внатрешни релации" @@ -11678,31 +11685,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "нема опис" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12416,27 +12423,27 @@ msgstr "Рутини" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Немате право на пристап овде!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Табелите не се пронајдени во базата на податоци." #: libraries/rte/rte_words.lib.php:43 @@ -12461,13 +12468,13 @@ msgstr "Додади нов корисник" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Немате право на пристап овде!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Табелите не се пронајдени во базата на податоци." #: libraries/rte/rte_words.lib.php:57 @@ -12493,13 +12500,13 @@ msgstr "Пратено" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Немате право на пристап овде!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Табелите не се пронајдени во базата на податоци." #: libraries/rte/rte_words.lib.php:71 @@ -14282,7 +14289,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14394,7 +14401,7 @@ msgstr "на почетокот од табелата" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14415,6 +14422,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "на почетокот од табелата" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16090,39 +16103,46 @@ msgstr "Акција" msgid "Constraint properties" msgstr "Ограничувања за табелите" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додади ограничувања" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Внатрешни релации" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Внатрешни релации" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16134,13 +16154,13 @@ msgstr "Избери полиња за прикажување" msgid "Foreign key constraint %s has been dropped" msgstr "Исклучи проверка на надворешни клучеви" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ограничувања за табелите" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/ml.po b/po/ml.po index 50aa5f0143..18799b92fc 100644 --- a/po/ml.po +++ b/po/ml.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-05-24 05:48+0000\n" "Last-Translator: GIMMY \n" "Language-Team: Malayalam - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "അച്ചടിക്കുക" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2372,109 +2379,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "എല്ലാം കാണിക്കൂ" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "പട്ടിക അഭിപ്രയങ്ങൾ" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2483,355 +2490,355 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Copy database to" msgid "Add table prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Copy database to" msgid "Replace table with prefix" msgstr "വിവരശേഖരം പകർത്തുക" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "എല്ലാം തിരഞ്ഞെടുക്കുക" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2925,8 +2932,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3767,7 +3774,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3823,8 +3830,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "പട്ടിക" @@ -4192,49 +4199,49 @@ msgstr "" msgid "Unknown table status:" msgstr "എല്ലാം കാണിക്കൂ" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Rename database to" msgid "Invalid database:" msgstr "വിവരശേഖരത്തിന്റ്റ പേര് മാറ്റുക" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Database %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%s എന്ന വിവരശേഖരം %s എന്ന പേരിലേക്ക് മാറ്റിയിരിക്കുന്നു" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4242,19 +4249,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10534,55 +10541,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10702,31 +10709,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11368,27 +11375,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11408,13 +11416,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11434,13 +11443,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "വിവരശേഖരത്തിൽ ഒരു പട്ടികയും കണ്ടെത്താനായില്ല." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -13072,7 +13082,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13183,7 +13193,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13204,6 +13214,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14691,39 +14705,46 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add constraint" msgstr "നിരകൾ ചേർക്കുക/മായക്കുക" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "വിവരശേഖരം(ങ്ങൾ) %1$s സൃഷ്ടിച്ചിരിക്കുന്നു." -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14733,11 +14754,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "%s എന്ന വിവരശേഖരം ഉപേക്ഷിച്ചിരിക്കുന്നു." -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add column" diff --git a/po/mn.po b/po/mn.po index a656e1a600..832290948c 100644 --- a/po/mn.po +++ b/po/mn.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Mongolian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Баганын нэрс" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Бүгдийг харах" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Жинхэнэ байрлал" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Болих" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Таслагдсан" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import files" msgid "Import status" msgstr "Файл оруулах" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Хүснэгтүүд сонго" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Хэвлэх" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "No tables" msgid "Go to link:" msgstr "Хүснэгт алга" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Баганын нэрс" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Нууц үг бий болгох" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Бий болгох" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Да" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Бүгдийг харах" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Тор харуулах" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2676,124 +2683,124 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "No databases" msgid "up to date" msgstr "ӨС байхгүй" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "Үүсгэх" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ерөнхий хамаатай онцлог" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Нээлттэй хүснэгтүүдийг харуулах" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Үл тоох" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Уг асуултыг энд дахин харуулах" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Та үнэхээр " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Execute bookmarked query" msgid "%s queries executed %s times in %s seconds." msgstr "Тэмдэглэгдсэн асуулт ажиллуулах" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Хүснэгтийн тайлбар" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "in query" msgid "Hide arguments" msgstr "асуултад" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2802,38 +2809,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Өгөгдлийн сан хуулах нь" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Шинэ талбар нэмэх" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Хүснэгтийн өгөгдлийг орлуулах файл" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Өмнөх" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2841,96 +2848,96 @@ msgid "Next" msgstr "Цааш" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Нийт" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Хоёртын " -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "3-р" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "4-р" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "5-р" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "6-р" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "7-р" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "8-р" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "10р" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "1-р" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "2-р" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "3-р" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "4-р" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2938,78 +2945,78 @@ msgid "May" msgstr "5-р" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "6-р" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "7-р" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "8-р" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "9-р" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "10р" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "11р" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "12р" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ня" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Да" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Мя" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Ба" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3017,223 +3024,223 @@ msgid "Sun" msgstr "Ня" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Да" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Мя" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Лх" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Пү" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Ба" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Бя" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ня" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Да" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Мя" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Лх" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пү" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Ба" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Бя" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Байхгүй" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "хэрэглэгдэж байна" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундэд" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Бичвэр талбар хэрэглэх" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d нь мөрийн буруу дугаар байна." -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3330,8 +3337,8 @@ msgstr "асуултад" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "ӨС" @@ -4260,7 +4267,7 @@ msgstr "Индекс %s нь устгагдсан." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4316,8 +4323,8 @@ msgstr "Харц" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Хүснэгт" @@ -4713,55 +4720,55 @@ msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрий msgid "Unknown table status:" msgstr "Дагавар төлвийг харуулах" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Сэдэв %s олдсонгүй!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Буруу өгөгдлийн сан" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Хүснэгтийн буруу нэр" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "General relation features" msgid "Failed to rename table %1$s to %2$s!" msgstr "Ерөнхий хамаатай онцлог" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4769,19 +4776,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Үндсэн түлхүүрийн нэр нь PRIMARY байх ёстой!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Индексийг PRIMARY болгож чадсангүй!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Тодорхойлогдсон индексийн хэсэггүй!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Гадаад түлхүүр үүсгэхэд алдаа гарлаа %1$s (өгөгдлийн төрлөө шалга)" @@ -11615,61 +11622,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Өөрчлөлт хадгалагдав" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Дотоод холбоо нэмэгдэв" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Өөрчлөлт хадгалагдав" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Файлыг унших боломжгүй байна" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11805,31 +11812,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "тайлбаргүй" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12556,27 +12563,27 @@ msgstr "Шинэ талбар нэмэх" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Танд хангалттай эрх байхгүй!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "ӨС-д хүснэгт олдсонгүй." #: libraries/rte/rte_words.lib.php:43 @@ -12603,13 +12610,13 @@ msgstr "Шинэ хэрэглэгч нэмэх" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Танд хангалттай эрх байхгүй!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "ӨС-д хүснэгт олдсонгүй." #: libraries/rte/rte_words.lib.php:57 @@ -12637,13 +12644,13 @@ msgstr "Үзэгдэл" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Танд хангалттай эрх байхгүй!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "ӨС-д хүснэгт олдсонгүй." #: libraries/rte/rte_words.lib.php:71 @@ -14467,7 +14474,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14581,7 +14588,7 @@ msgstr "Хүснэгтийн эхэнд" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14602,6 +14609,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Хүснэгтийн эхэнд" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16282,39 +16295,46 @@ msgstr "Үйлдэл" msgid "Constraint properties" msgstr "Асгарсан хүснэгтийг хүчлэх" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Тогтмол нэмэх" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Дотоод хамаарал" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Дотоод хамаарал" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16326,13 +16346,13 @@ msgstr "Харуулах талбарыг соль" msgid "Foreign key constraint %s has been dropped" msgstr "Гадаад түлхүүр шалгалтыг хаах" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Баганын нэрс" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/ms.po b/po/ms.po index 3c3ccb90d6..94d3b3c670 100644 --- a/po/ms.po +++ b/po/ms.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:06+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Malay - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Nama Kolum" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Papar semua" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Linestring" msgid "Original length" msgstr "Rentetan talian" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "DiBatalkan" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Eksport" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Pilih Jadual" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Tiada pangkalan data" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Nama Kolum" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Change password" msgid "Generate password" msgstr "Ubah Katalaluan" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 #, fuzzy msgid "Generate" msgstr "Dijana oleh" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Isn" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Papar semua" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Indeks" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Papar grid" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "Indeks" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "Indeks" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2588,121 +2595,121 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Tiada pangkalan data" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Versi Pelayan" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Pilihan Pelayan" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Pilihan Pelayan" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Ciri-ciri hubungan am" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "Papar jadual" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Abai" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Papar kueri ini di sini lagi" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Adakah anda ingin " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komen jadual" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "kueri-SQL" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2711,38 +2718,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Salin pangkalan data ke" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Ganti data jadual dengan fail" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Terdahulu" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2750,96 +2757,96 @@ msgid "Next" msgstr "Berikut" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jumlah" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binari" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mac" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mei" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Jun" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Jul" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Ogos" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mac" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2847,78 +2854,78 @@ msgid "May" msgstr "Mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ogos" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sept" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dis" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Aha" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Isn" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sel" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2926,199 +2933,199 @@ msgid "Sun" msgstr "Aha" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Isn" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Sel" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Rab" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Kha" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Aha" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Isn" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sel" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Rab" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Kha" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Tiada" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "sedang digunakan" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "Records" msgid "Second" msgstr "Rekod" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "Tambah medan baru" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please select a database" msgid "Please enter a valid date" msgstr "Sila pilih pangkalan data" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3214,8 +3221,8 @@ msgstr "pada kueri" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Pangkalan Data" @@ -4109,7 +4116,7 @@ msgstr "Indeks %s telah digugurkan." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4165,8 +4172,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Jadual" @@ -4554,50 +4561,50 @@ msgstr "" msgid "Unknown table status:" msgstr "Papar jadual" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "Cari di pangkalan data" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy msgid "Invalid database:" msgstr "Tiada pangkalan data" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Inside tables:" msgid "Invalid table name:" msgstr "Di dalam jadual:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Versi Pelayan" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Jadual %s telah ditukarnama ke %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4605,19 +4612,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nama kekunci utama mestilah \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Tidak boleh menukar indekx ke PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Tiada bahagian indeks ditakrifkan!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11239,60 +11246,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Pengubahsuaian telah disimpan" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Ciri-ciri hubungan am" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Pengubahsuaian telah disimpan" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Fail tidak boleh dibaca" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Ciri-ciri hubungan am" @@ -11422,31 +11429,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "tiada keterangan" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12144,27 +12151,27 @@ msgstr "Tambah medan baru" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Tiada jadual dijumpai pada pangkalan data." #: libraries/rte/rte_words.lib.php:43 @@ -12189,13 +12196,13 @@ msgstr "Tambah Pengguna Baru" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Tiada jadual dijumpai pada pangkalan data." #: libraries/rte/rte_words.lib.php:57 @@ -12220,13 +12227,13 @@ msgstr "Hantar" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Anda tidak mempunyai hak mencukupi untuk berada disini sekarang!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Tiada jadual dijumpai pada pangkalan data." #: libraries/rte/rte_words.lib.php:71 @@ -13941,7 +13948,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14053,7 +14060,7 @@ msgstr "Pada Awalan Jadual" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14074,6 +14081,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Pada Awalan Jadual" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15708,39 +15721,46 @@ msgstr "Aksi" msgid "Constraint properties" msgstr "Nama Kolum" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Tambahkan kekangan" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy msgid "Internal relations" msgstr "Ciri-ciri hubungan am" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy msgid "Internal relation" msgstr "Ciri-ciri hubungan am" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -15752,13 +15772,13 @@ msgstr "Pilih Medan untuk dipapar" msgid "Foreign key constraint %s has been dropped" msgstr "Tambahkan kekangan" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Nama Kolum" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "Tambah medan baru" diff --git a/po/nb.po b/po/nb.po index e930ee09c7..d64cd1a711 100644 --- a/po/nb.po +++ b/po/nb.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-05-19 17:18+0000\n" "Last-Translator: Axel Magnus Gaasø \n" "Language-Team: Norwegian Bokmål - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2341,26 +2348,26 @@ msgstr "" "mellom STIGENDE/ SYNKENDE
- Ctrl + klikk eller Alt + klikk (Mac: Shift " "+ Option + Klikk). For å fjerne kolonnen fra BESTILLT AV-leddet" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klikk for å markere/fjern markering." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dobbelklikk for å kopiere kolonnenavn." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Vis alle" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2369,11 +2376,11 @@ msgstr "" "valgene Endring, avkrysningsruten, redigere, kopiere og slette koblinger " "virker kanskje ikke etter lagring." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2381,103 +2388,103 @@ msgstr "" "Ønsker du virkelig å se alle radene? For et stort bord kan dette krasje " "nettleseren." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Opprinnelig lengde" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "avbryt" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutt" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Vellykket" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Import status" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Legg filene her" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Velg database først" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Gå til link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopier kolonnenavn." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generer passord" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generer" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mer" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Vis panel" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Skjul panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Vis skjulte elementer i navigasjonstreet." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lenke med hovedpanelet" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Fjern lenke fra hovedpanelet" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2487,57 +2494,57 @@ msgstr "" "Den nye versjonen har nummer %s og er utgitt den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", siste tilgjengelige versjon:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "er oppdatert" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Opprett view" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Tjenerport" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Send feilrapport" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Endre Rapportinnstillinger" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Vis Rapportdetaljer" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2546,62 +2553,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Noen feil har blitt oppdaget på serveren!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Vennligst se nederst i dette vinduet." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorer alle" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Utfør denne spørring igjen?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Vil du virkelig slette dette bokmerket?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tabellkommentarer" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Skjul søkeresultater" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2610,361 +2617,361 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopier databasen til" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Utfør indeks(er)" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Erstatt tabellprefiks" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopier tabell med prefiks" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Forrige" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Neste" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "I dag" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Januar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mars" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Desember" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Des" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Søndag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Mandag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Tirsdag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Fredag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Lørdag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Søn" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Man" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Tir" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Tor" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Lør" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Søndag" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Man" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Tir" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ons" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Tor" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Fre" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Lør" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Uke" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalender-måned-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "ingen" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Time" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minutt" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekund" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Vennligst ordne dette feltet" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Vennligst tast inn en gyldig e-post adresse" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Vennligst tast inn en gyldig URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Vennligst tast inn en gyldig dato" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Vennligst tast inn en gyldig dato ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Vennligst tast inn et gyldig tall" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Vennligst tast inn et gyldig kreditkort nummer" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Vennligst oppgi kun tall" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Vennligst tast inn den samme verdien igjen" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Vennligst tast inn minst {0} tegn" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Vennligst tast inn en verdi mellom {0} og {1}" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Vennligst tast inn et gyldig tall!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3060,8 +3067,8 @@ msgstr "Spør igjen" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3892,7 +3899,7 @@ msgstr "Indeksen %s har blitt slettet." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3950,8 +3957,8 @@ msgstr "Vis" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabell" @@ -4314,39 +4321,39 @@ msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren." msgid "Unknown table status:" msgstr "Ukjent tabellstatus:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Kildedatabasen \"%s\" ble ikke funnet!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabasen %s ble ikke funnet!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Ugylding database:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Ugyldig tabellnavn:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Feil ved endring av tabellnavn %1$s til %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabellen %1$s har endret navn til %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Kunne ikke lagre preferanser for tabellgrensesnitt!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4355,7 +4362,7 @@ msgstr "" "Feil ved opprydning av preferansene for tabellgrensesnitt (se $cfg['Servers']" "[$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4366,19 +4373,19 @@ msgstr "" "etter at du har lastet denne siden på nytt. Vennligst sjekk om " "tabellstrukturen har blitt endret." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Navnet til primærnøkkelen må være \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kan ikke endre indeks til PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Ingen indeksdeler definert!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11770,63 +11777,63 @@ msgstr "Formaterer tekst som en SQL spørring med syntaksutheving." msgid "Formats text as XML with syntax highlighting." msgstr "Formaterer tekst som en SQL spørring med syntaksutheving." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Feil: relasjoner eksisterer allerede." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY relasjon lagt til" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Intern relasjon lagt til" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY relasjon lagt til" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Feil: Relasjon ikke opprettet." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11972,18 +11979,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Re-logginn til phpMyAdmin for å laste den oppdaterte konfigurasjonsfila." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ingen beskrivelse" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11991,14 +11998,14 @@ msgid "" "configuration storage there." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Mangler phpMyAdmin konfigurasjonslagertabeller" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12775,27 +12782,27 @@ msgstr "Rutiner" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Du har ikke nok rettigheter til å være her nå!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Ingen tabeller funnet i databasen" #: libraries/rte/rte_words.lib.php:43 @@ -12825,13 +12832,13 @@ msgstr "Triggere" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Du har ikke nok rettigheter til å være her nå!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Ingen tabeller funnet i databasen" #: libraries/rte/rte_words.lib.php:57 @@ -12861,13 +12868,13 @@ msgstr "Hendelse" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Du har ikke nok rettigheter til å være her nå!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Ingen tabeller funnet i databasen" #: libraries/rte/rte_words.lib.php:71 @@ -14781,7 +14788,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14903,7 +14910,7 @@ msgstr "Ved begynnelsen av tabellen" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14926,6 +14933,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Ved begynnelsen av tabellen" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16647,31 +16660,38 @@ msgstr "Handling" msgid "Constraint properties" msgstr "Begrensninger for tabell" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Fremmednøkkelbegrensning" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Legg til begrensninger" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Interne relasjoner" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16679,7 +16699,7 @@ msgstr "" "En intern relasjon er ikke nødvendig når en tilsvarende FOREIGN KEY relasjon " "eksisterer." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16691,13 +16711,13 @@ msgstr "Velg kolonne for visning" msgid "Foreign key constraint %s has been dropped" msgstr "Fremmednøkkelbegrensning" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Begrensninger for tabell" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/ne.po b/po/ne.po index 1cf9269a3f..3bb4a2e83a 100644 --- a/po/ne.po +++ b/po/ne.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Nepali - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Table comments:" msgid "Show panel" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2342,107 +2349,107 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments:" msgid "Show arguments" msgstr "टेबलको टिप्पणीहरु:" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,349 +2458,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "No tables selected." msgid "Copy tables to" msgstr "कुनैपनि डेटाबेस चयन गरिएको छैन।" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2887,8 +2894,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "तथ्याङ्क भण्डार" @@ -3680,7 +3687,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3736,8 +3743,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "टेबल" @@ -4097,46 +4104,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4144,19 +4151,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10304,47 +10311,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10462,31 +10469,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11128,27 +11135,28 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "डेटाबेसमा कुनैपनि टेबल भेटिइएन।" #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11168,13 +11176,14 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "डेटाबेसमा कुनैपनि टेबल भेटिइएन।" #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11194,13 +11203,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "डेटाबेसमा कुनैपनि टेबल भेटिइएन।" #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -12814,7 +12824,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12914,7 +12924,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12935,6 +12945,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14390,35 +14404,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14427,11 +14448,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/nl.po b/po/nl.po index 6834c3df25..31da7655e6 100644 --- a/po/nl.po +++ b/po/nl.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-27 08:32+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" @@ -63,11 +63,12 @@ msgstr "Tabelopmerkingen:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -519,7 +520,7 @@ msgstr "" msgid "Succeeded" msgstr "Geslaagd" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Mislukt" @@ -623,7 +624,7 @@ msgstr "\"DROP DATABASE\" opdrachten zijn uitgeschakeld." 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:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -647,7 +648,7 @@ msgstr "" msgid "General settings" msgstr "Algemene instellingen" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1059,7 +1060,7 @@ msgstr "U moet minstens één kolom toevoegen." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "SQL voorbeeld" @@ -1519,7 +1520,7 @@ msgstr "Verklaar resultaat" msgid "Status" msgstr "Status" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1975,7 +1976,7 @@ msgid "Second step of normalization (2NF)" msgstr "Tweede stap van normalisatie (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Klaar" @@ -2056,7 +2057,7 @@ msgstr "Er zijn geen afhankelijkheden geselecteerd!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Opslaan" @@ -2137,7 +2138,7 @@ msgstr "Selecteer twee verschillende kolommen" msgid "Data point content" msgstr "Inhoud gegevenspunt" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2191,6 +2192,18 @@ msgstr "" "zijn; tik deze waardes indien gewenst rechtstreeks in" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL accepteert additionele waardes die niet met schuiven te selecteren " +"zijn; tik deze waardes indien gewenst rechtstreeks in" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2211,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:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Selecteer de gerefereerde sleutel" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Selecteer vreemde sleutel" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "Selecteer de primaire sleutel of een unieke sleutel!" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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 +2236,76 @@ msgstr "" "U hebt de layoutwijzigingen niet opgeslagen. Deze zullen verloren gaan als u " "deze niet opslaat. Wilt u doorgaan?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Paginanaam" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Pagina opslaan" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Pagina openen" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Pagina verwijderen" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Naamloos" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Gelieve een pagina te selecteren om verder te gaan" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Gelieve een geldige paginanaam in te geven" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Pagina werd succesvol verwijderd" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Exporteer relationeel schema" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Wijzigingen werden opgeslagen" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Een optie voor kolom \"%s\" toevoegen." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d object(en) aangemaakt." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Verzenden" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Druk op ESC om het bewerken te annuleren." -#: js/messages.php:564 +#: js/messages.php:570 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 +2313,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Sleep om te herschikken." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Klik om resultaten te sorteren op deze kolom." -#: js/messages.php:570 +#: js/messages.php:576 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 +2332,26 @@ msgstr "" "+ klik (Mac: Shift + Option + klik) om de kolom uit de ORDER BY (sorteren " "op)-component verwijderen" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klik om te markeren/demarkeren." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dubbelklik om kolomnaam te kopiëren." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Toon alles" -#: js/messages.php:581 +#: js/messages.php:587 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 +2360,12 @@ msgstr "" "checkboxen, Bewerken, Kopiëren en Verwijderen, werken mogelijk niet na " "opslaan." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,103 +2373,103 @@ msgstr "" "Wil je echt alle regels zien? Voor een grote tabel kan dit je browser doen " "crashen." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Oorspronkelijke lengte" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "annuleren" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Afgehaakte" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Geslaagd" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Bestanden hier neerzetten" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Selecteer eerst een database" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Volg de link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kolomnaam kopiëren." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Wachtwoord genereren" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Genereren" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Meer" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Paneel tonen" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Paneel verbergen" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Verborgen navigatieboom onderdelen weergeven." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Verbinden met hoofdpaneel" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Loskoppelen van hoofdpaneel" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2466,27 +2479,27 @@ msgstr "" "overwegen. De nieuwe versie is %s, uitgebracht op %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", meest recente versie:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "Recent bijgewerkt" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "VIEW aanmaken" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Verzend foutmeldingsverslag" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Verstuur foutmeldingsverslag" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2494,15 +2507,15 @@ msgstr "" "Er is een fatale JavaScript-fout opgetreden. Wil u een foutmeldingsverslag " "verzenden?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Rapport instellingen wijzigen" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Toon rapport details" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2510,7 +2523,7 @@ msgstr "" "Uw uitvoer is onvolledig, als gevolg van een lage uitvoeringstijdbeperking " "op PHP niveau!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2520,60 +2533,60 @@ msgstr "" "indiening, worden een aantal velden mogelijk genegeerd, als gevolg van PHP's " "max_input_vars configuratie." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Er zijn enkele fouten opgetreden op de server!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Gelieve de onderkant van dit venster te bekijken." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Alles negeren" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Deze query opnieuw uitvoeren?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Weet u zeker dat u deze bladwijzer wil verwijderen?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s queries %s keer uitgevoerd in %s seconden." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(en) gepasseerd" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Toon argumenten" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Argumenten verbergen" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Gebruikte tijd:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2588,347 +2601,347 @@ msgstr "" "\"Offslinewebsitegegevens\" kan dan helpen. In Safari wordt dit probleem " "meestal veroorzaakt door \"Privénavigatie\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopieer tabellen naar" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Tabel voorvoegsel toevoegen" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Vervang tabel met voorvoegsel" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Vorige" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Volgende" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Vandaag" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januari" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februari" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "maart" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "mei" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "augustus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "zondag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "maandag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "dinsdag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "donderdag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "vrijdag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "zaterdag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "zo" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "ma" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "do" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "za" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "ma" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "do" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "za" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Week" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "geen" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Uur" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Seconde" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Dit veld is verplicht" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Repareer a.u.b. dit veld" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "A.u.b. een geldig e-mailadres invoeren" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "A.u.b. een geldige URL ingeven" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "A.u.b. een geldige datum in geven" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "A.u.b. een valide datum (ISO) in geven" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Vul a.u.b. een geldig nummer in" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Vul a.u.b, een geldig creditcardnummer in" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Vul a.u.b. alleen cijfers in" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "A,u,b, dezelfde waarde nogmaals in geven" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Vul a.u,b, niet meer dan {0} tekens in" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Vul a.u,b, minstens {0} tekens in" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Vul a.u,b. een waarde tussen {0} en {1} in" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Vul a.u.b. een geldige datum of tijd in" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Vul a.u.b.een geldige waarde in HEX in" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3027,8 +3040,8 @@ msgstr "Query opnieuw uitvoeren" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Database" @@ -3827,7 +3840,7 @@ msgstr "Index %s is verwijderd." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3887,8 +3900,8 @@ msgstr "View" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4250,39 +4263,39 @@ msgstr "Deze MySQL-server ondersteund de %s opslag-engine niet." msgid "Unknown table status:" msgstr "Onbekende tabelstatus:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Brondatabase `%s` werd niet gevonden!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Doeldatabase `%s` niet gevonden!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Ongeldige database:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Ongeldige tabelnaam:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Fout bij hernoemen van tabel %1$s naar %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabel %1$s is hernoemd naar %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Tabelinterfacevoorkeuren konden niet worden opgeslagen!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4291,7 +4304,7 @@ msgstr "" "Opkuisen van tabelinterfacevoorkeuren is mislukt (zie $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4302,19 +4315,19 @@ msgstr "" "wijzigingen zullen verdwijnen na verversen van deze pagina. Controleer of de " "tabelstructuur is gewijzigd." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "De naam van de primaire sleutel moet \"PRIMARY\" zijn!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kan index niet naar PRIMARY hernoemen!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Geen index-delen gedefinieerd!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11085,47 +11098,47 @@ msgstr "Maakt de tekst op in JSON met syntaxiskleuring." msgid "Formats text as XML with syntax highlighting." msgstr "Maakt de tekst op in XML met syntaxiskleuring." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Fout: relatie bestaat reeds." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY-relatie werd toegevoegd." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fout: vreemde (FOREIGN KEY) relatie kon niet toegevoegd worden!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Fout: Ontbrekende index op kolom(men)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Fout: relatiefuncties zijn uitgeschakeld!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Interne relatie werd toegevoegd." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Fout: Interne relatie kon niet toegevoegd worden!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "vreemde (FOREIGN KEY) relatie werd verwijderd." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fout: vreemde (FOREIGN KEY) relatie kon niet verwijderd worden!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Fout: Interne relatie kon niet verwijderd worden!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Interne relatie werd verwijderd." @@ -11250,11 +11263,11 @@ msgstr "" "Meld opnieuw aan bij phpMyAdmin om het bijgewerkte configuratiebestand te " "laden." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Geen beschrijving aanwezig" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11264,7 +11277,7 @@ msgstr "" "aan te maken. Je kunt naar de 'Operations' tab gaan van enige database om " "phpMyAdmin configuratie opslag in te stellen." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11273,14 +11286,14 @@ msgstr "" "%sCreate%s een database met de naam 'phpmyadmin' en stel daar de phpMyAdmin " "configuratie opslag in." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sMaak%s de configuratie-opslag van phpMyAdmin aan in de huidige database." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s ontbrekende phpMyAdmin configuratie opslag tabellen." @@ -11958,30 +11971,39 @@ msgid "routine" msgstr "routine" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "U heeft niet voldoende rechten om een routine aan te maken" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "Geen routine met de naam %1$s gevonden in database %2$s. Je hebt mogelijk " "niet de benodigde rechten om deze routine te wijzigen" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "Geen routine met de naam %1$s gevonden in database %2$s. Je hebt mogelijk " "niet de benodigde rechten om deze routine te lezen/wijzigen" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Geen routine met naam %1$s gevonden in database %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12002,12 +12024,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "U heeft niet voldoende rechten om een trigger aan te maken" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Geen trigger met naam %1$s gevonden in database %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12028,12 +12053,15 @@ msgid "event" msgstr "gebeurtenis" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "U heeft niet voldoende rechten om een gebeurtenis aan te maken" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Geen gebeurtenis met naam %1$s gevonden in database %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13880,8 +13908,12 @@ msgid "Unexpected end of CASE expression" msgstr "Onverwacht einde van CASE expressie" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Een symbool naam werd verwacht! Een gereserveerd sleutelwoord kan niet als " @@ -13983,7 +14015,7 @@ msgstr "Onverwacht begin van opdracht." msgid "Unrecognized statement type." msgstr "Opdracht type niet herkent." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Er is geen transactie gestart." @@ -14004,6 +14036,12 @@ msgstr "Dit type van voorwaarde is eerder uitgevoerd." msgid "Unrecognized keyword." msgstr "Sleutelwoord niet herkent." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Onverwacht begin van opdracht." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "De naam van de entiteit werd verwacht." @@ -15499,31 +15537,38 @@ msgstr "Acties" msgid "Constraint properties" msgstr "Beperkingseigenschappen" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Alleen kolommen met een index zullen worden weergegeven. U kunt hieronder " "een index definiëren." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Beperking voor vreemde sleutel" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Voeg beperking toe" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interne relaties" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Interne relatie" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15531,7 +15576,7 @@ msgstr "" "Een interne relatie is niet noodzakelijk wanneer er reeds een FOREIGN KEY-" "relatie bestaat." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Kies weer te geven kolom:" @@ -15540,11 +15585,11 @@ msgstr "Kies weer te geven kolom:" msgid "Foreign key constraint %s has been dropped" msgstr "Beperkingen voor vreemde sleutel %s werd verwijderd" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Naam van de beperking" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Kolom toevoegen" diff --git a/po/pa.po b/po/pa.po index 8258d226b0..aa9e5dbfd0 100644 --- a/po/pa.po +++ b/po/pa.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-08-21 12:25+0000\n" "Last-Translator: Satnam S Virdi \n" "Language-Team: Punjabi - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2326,109 +2333,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,349 +2444,349 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "ਜਨਵਰੀ" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "ਫ਼ਰਵਰੀ" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "ਮਾਰਚ" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "ਅਪ੍ਰੈਲ" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "ਮਈ" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "ਜੂਨ" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "ਜੁਲਾਈ" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ਅਗਸਤ" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "ਸਤੰਬਰ" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "ਅਕਤੂਬਰ" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "ਨਵੰਬਰ" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "ਦਸੰਬਰ" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ਜਨਵਰੀ" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "ਫ਼ਰਵਰੀ" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "ਮਾਰਚ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "ਅਪ੍ਰੈਲ" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "ਮਈ" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ਜੂਨ" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ਜੁਲਾਈ" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ਅਗਸਤ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ਸਤੰਬਰ" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ਅਕਤੂਬਰ" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "ਨਵੰਬਰ" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "ਦਸੰਬਰ" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "ਐਤਵਾਰ" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "ਸੋਮਵਾਰ" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "ਮੰਗਲਵਾਰ" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "ਬੁਧਵਾਰ" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "ਵੀਰਵਾਰ" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "ਸ਼ੁੱਕਰਵਾਰ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "ਸ਼ਨੀਵਾਰ" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "ਐਤ" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "ਸੋਮ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "ਮੰਗਲ" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "ਬੁਧ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "ਵੀਰ" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "ਸ਼ਨੀ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ਐਤ" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "ਸੋਮ" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "ਮੰਗਲ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "ਬੁਧ" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "ਵੀਰ" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "ਸ਼ੁੱਕਰ" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "ਸ਼ਨੀ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2873,8 +2880,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3669,7 +3676,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3725,8 +3732,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4092,46 +4099,46 @@ msgstr "" msgid "Unknown table status:" msgstr "ਸਾਰੇ ਦਿਖ਼ਾਓ" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4139,19 +4146,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10304,55 +10311,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10472,31 +10479,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11138,26 +11145,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11178,12 +11185,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11204,12 +11211,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12824,7 +12831,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12932,7 +12939,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12953,6 +12960,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14392,37 +14403,44 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14432,11 +14450,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "%1$s ਡਾਟਾਬੇਸ ਬਣ ਚੁੱਕਾ ਹੈ." -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot index 79d9699109..1e5816beab 100644 --- a/po/phpmyadmin.pot +++ b/po/phpmyadmin.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -64,11 +64,12 @@ msgstr "" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -509,7 +510,7 @@ msgstr "" msgid "Succeeded" msgstr "" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "" @@ -595,7 +596,7 @@ msgstr "" msgid "Could not load the progress of the import." msgstr "" -#: import_status.php:116 js/messages.php:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -617,7 +618,7 @@ msgstr "" msgid "General settings" msgstr "" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -982,7 +983,7 @@ msgstr "" #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "" @@ -1423,7 +1424,7 @@ msgstr "" msgid "Status" msgstr "" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1861,7 +1862,7 @@ msgid "Second step of normalization (2NF)" msgstr "" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "" @@ -1936,7 +1937,7 @@ msgstr "" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "" @@ -2013,7 +2014,7 @@ msgstr "" msgid "Data point content" msgstr "" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2064,251 +2065,257 @@ msgstr "" #: js/messages.php:528 msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" + +#: js/messages.php:534 +msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" msgstr "" -#: js/messages.php:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 templates/database/designer/side_menu.phtml:91 #: templates/database/designer/side_menu.phtml:94 msgid "Choose column to display" msgstr "" -#: js/messages.php:539 +#: js/messages.php:545 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:542 +#: js/messages.php:548 msgid "Page name" msgstr "" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 templates/database/designer/side_menu.phtml:63 #: templates/database/designer/side_menu.phtml:66 msgid "Save page as" msgstr "" -#: js/messages.php:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "" -#: js/messages.php:551 +#: js/messages.php:557 msgid "Do you want to save the changes to the current page?" msgstr "" -#: js/messages.php:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "" -#: js/messages.php:557 +#: js/messages.php:563 #, possible-php-format msgid "Add an option for column \"%s\"." msgstr "" -#: js/messages.php:558 +#: js/messages.php:564 #, possible-php-format msgid "%d object(s) created." msgstr "" -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "" -#: js/messages.php:564 +#: js/messages.php:570 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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "" -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "" -#: js/messages.php:570 +#: js/messages.php:576 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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, possible-php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2316,105 +2323,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, possible-php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, possible-php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2430,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2857,8 +2864,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3645,7 +3652,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3701,8 +3708,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4062,46 +4069,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, possible-php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, possible-php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, possible-php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, possible-php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, possible-php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, possible-php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4109,19 +4116,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, possible-php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10240,47 +10247,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10396,31 +10403,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, possible-php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, possible-php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, possible-php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11062,26 +11069,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, possible-php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, possible-php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, possible-php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11102,12 +11109,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, possible-php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11128,12 +11135,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, possible-php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12744,7 +12751,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12844,7 +12851,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12865,6 +12872,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14292,35 +14303,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14329,11 +14347,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/pl.po b/po/pl.po index 9a3d95f092..6ce404eb87 100644 --- a/po/pl.po +++ b/po/pl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-06-30 09:38+0000\n" "Last-Translator: Bartosz Pazoła \n" "Language-Team: Polish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Kliknij, by zaznaczyć/odznaczyć." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Kliknij dwukrotnie, aby skopiować nazwę kolumny." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Kliknij rozwijane strzałki,
aby przełączyć widoczność kolumn." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Pokaż wszystko" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2340,12 +2347,12 @@ msgstr "" "pól wyboru, edycji, kopiowania i usuwania łącza może nie działać po " "zapisaniu." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2353,104 +2360,104 @@ msgstr "" "Czy napewno chcesz zobaczyć wszystkie wiersze? Przy dużej tabeli może to " "spowodować wysypanie się przeglądarki." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Oryginalna długość" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "anuluj" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Przerwane" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sukces" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importuj status" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Tutaj upuść pliki" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Najpierw wybierz bazę danych" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Idź do linku:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Skopiuj nazwę kolumny." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Wygeneruj hasło" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generuj" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Więcej" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Pokaż panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Ukryj panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Pokaż ukryte elementy drzewa nawigacji." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Odłącz od głównego panelu" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2460,41 +2467,41 @@ msgstr "" "wersja to %s, wydana dnia %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", ostatnia stabilna wersja:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktualna" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Utwórz widok" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Wyślij raport o błędach" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Wyślij zgłoszenie błędu" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Zmiana ustawień raportów" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Pokaż szczegóły raportu" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2502,7 +2509,7 @@ msgstr "" "Twój eksport jest niekompletny, z powodu niskiej realizacji terminu na " "poziomie PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2512,58 +2519,58 @@ msgstr "" "niektóre pola mogą zostać zignorowane, w związku z ustawieniami PHP's " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Parę błędów zostało wykrytych na serwerze!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Proszę, popatrz na dół tego okienka." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignoruj wszystko" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Czy wykonać to zapytanie ponownie?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Czy na pewno chcesz usunąć tę zakładkę?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Wystąpiły błędy podczas pobierania zdebugowanego kodu SQL." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s kwerendy wykonane %s razy w %s sekund." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argumentów spełniło kryteria" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Pokaż argumenty" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Ukryj argumenty" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Zajeło to:" -#: js/messages.php:712 +#: js/messages.php:718 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 +2579,353 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiuj bazę danych do" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Dodaj prefiks tabeli:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zamień przedrostek tabeli" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiuj tabelę z przedrostkiem" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Poprz." -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Nast." #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Dziś" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Styczeń" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Luty" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Marzec" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Kwiecień" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Czerwiec" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Lipiec" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Sierpień" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Wrzesień" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Październik" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Listopad" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Grudzień" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Sty" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Lut" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Kwi" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Cze" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Lip" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Sie" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Wrz" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Paź" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Lis" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Gru" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Niedziela" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Poniedziałek" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Wtorek" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Środa" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Czwartek" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Piątek" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Nie" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Wto" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Śro" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Czw" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pią" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sob" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Nie" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Pon" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Wto" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Śro" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Czw" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pią" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sob" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Ty" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalendarz-miesiąc-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "brak" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Godzina" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuta" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekunda" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "To pole jest wymagane" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Popraw to pole" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Podaj poprawny adres email" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Wprowadź prawidłowy adres URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Wprowadź prawidłową datę" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Wprowadź poprawną datę (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Wprowadź poprawną liczbę" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Wprowadź prawidłowy numer karty kredytowej" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Wprowadź tylko cyfry" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Wprowadź ponownie tę samą wartość" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Wprowadź nie więcej niż {0} znaków" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Wprowadź co najmniej {0} znaków" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Wprowadź wartość o długości pomiędzy {0} a {1} znaków" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Wprowadź wartość między {0} i {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Wprowadź wartość mniejszą niż lub równą {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Wprowadź wartość większą niż lub równą {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Podaj prawidłową datę lub czas" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Wprowadź prawidłową wartość HEX" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3016,8 +3023,8 @@ msgstr "Wykonaj zapytanie ponownie" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Baza danych" @@ -3826,7 +3833,7 @@ msgstr "Klucz %s został usunięty." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3885,8 +3892,8 @@ msgstr "Widok" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4251,39 +4258,39 @@ msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s." msgid "Unknown table status:" msgstr "Nieznany status tabeli:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Źródło bazy danych '%s' nie zostało znalezione!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Docelowej bazy '%s' nie znaleziono!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Niewłaściwa baza danych:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Niewłaściwa nazwa tabeli:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s ma nazwę zmienioną na %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nie można zapisać preferencji UI tabeli!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4292,7 +4299,7 @@ msgstr "" "Nie udało się czyszczenie preferencji tabeli UI (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4302,19 +4309,19 @@ msgstr "" "Nie można zapisać \"%s\" własności UI. Wprowadzone zmiany nie będą trwałe po " "odświeżeniu strony. Proszę sprawdzić, czy struktura tabeli została zmieniona." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Nazwą podstawowego klucza musi być… PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Nie można zmienić nazwy indeksu na PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Brak zdefiniowanych części indeksu!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11462,59 +11469,59 @@ msgstr "Formatuj tekst traktując jako zapytanie SQL z podświetlaniem składni. msgid "Formats text as XML with syntax highlighting." msgstr "Formatuj tekst traktując jako zapytanie SQL z podświetlaniem składni." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Błąd: relacja już istnieje." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Relacja FOREIGN KEY została dodana" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Błąd: Funkcjonalność relacyjna jest wyłączona!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Relacja wewnętrzna została dodana." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Relacja FOREIGN KEY została dodana" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Błąd: Relacja nie została dodana!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11654,18 +11661,18 @@ msgstr "" "Zaloguj się ponownie do phpMyAdmin, żeby załadować zmieniony plik " "konfiguracyjny." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "brak opisu" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11673,14 +11680,14 @@ msgid "" "configuration storage there." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Brakuje tabel przechowujących konfigurację phpMyAdmin" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12390,26 +12397,29 @@ msgid "routine" msgstr "Procedura" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nie masz odpowiednich uprawnień, aby utworzyć procedurę" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Nie znaleziono procedury %1$s w bazie danych %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12430,12 +12440,15 @@ msgid "trigger" msgstr "wyzwalacz" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nie masz wystarczających uprawnień aby utworzyć wyzwalacz" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Nie znaleziono wyzwalacza %1$s w bazie danych %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12456,12 +12469,15 @@ msgid "event" msgstr "zdarzenie" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nie masz odpowiednich uprawnień, aby stworzyć zdarzenie" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nie znaleziono zdarzenia %1$s w bazie danych %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14350,7 +14366,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14472,7 +14488,7 @@ msgstr "Na początku tabeli" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14495,6 +14511,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na początku tabeli" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16121,38 +16143,45 @@ msgstr "Działanie" msgid "Constraint properties" msgstr "Ograniczenia dla tabeli" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Ograniczenie klucza obcego" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj ograniczenia" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Wewnętrzne relacje" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Wewnętrzna relacja jest zbędna gdy istnieje odpowiednia relacja FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Wybierz kolumny do wyświetlenia:" @@ -16162,11 +16191,11 @@ msgstr "Wybierz kolumny do wyświetlenia:" msgid "Foreign key constraint %s has been dropped" msgstr "Ograniczenie klucza obcego" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Ograniczenia nazwy" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/pt.po b/po/pt.po index 1261c66500..a078d9ce47 100644 --- a/po/pt.po +++ b/po/pt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-10 19:29+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Portuguese - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2362,26 +2369,26 @@ msgstr "" "entre ASC/DESC.
-Ctrl+Click ou Alt+Click (Mac: Shift+Option+Click) para " "remover a coluna da cláusula ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Clique para seleccionar/rejeitar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Duplo-clique para copiar o nome da coluna." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2390,13 +2397,13 @@ msgstr "" "edição da tabela, checkbox, Editar, Copiar e Eliminar links podem não " "funcionar depois de guardar." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2404,110 +2411,110 @@ msgstr "" "Deseja realmente ver todas as linhas? Grandes tabelas poderão crashar o " "navegador." -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Segmento original" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "cancelar" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sucesso" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Largue ficheiros aqui" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Primeiro selecione a base de dados" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Ir para link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Gerar palavra-passe" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Gerar" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mais" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Ver Painel" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Esconder Painel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostrar items de navegação escondidos da árvore." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Desconectar do painel principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2517,48 +2524,48 @@ msgstr "" "actualização. A nova versão é %s, e foi lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "até à data" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Criar visualização" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Enviar relatório de erro" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Enviar relatório de erro" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Alterar as definições dos relatórios" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Ver os detalhes do relatório" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2566,7 +2573,7 @@ msgstr "" "Exportação incompleta devido a um limite de tempo de execução baixo a nível " "do PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2576,62 +2583,62 @@ msgstr "" "alguns dos campos podem ser ignorados, devido à configuração do PHP " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Foram detectados alguns erros no servidor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Por favor olhe para a parte inferior desta janela." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorar tudo" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executar consulta novamente?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Deseja realmente eliminar este marcador?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Algum erro ocorreu ao carregar a informação de debug do SQL." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s querys executadas %s vezes em %s segundos." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentários da tabela" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Esconder resultados da pesquisa" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2640,383 +2647,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiar a Base de Dados para" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Substituir prefixo da tabela" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabela com prefixo" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Ant" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Próx" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hoje" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Janeiro" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Fevereiro" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Março" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Abril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Junho" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Julho" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agosto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Setembro" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Outubro" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembro" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Maio" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dez" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Segunda" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Sexta" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Domingo" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sáb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "Calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Nenhum" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Segundo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Usar campo de texto" -#: js/messages.php:889 +#: js/messages.php:895 #, 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:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduza um número válido!" -#: js/messages.php:891 +#: js/messages.php:897 #, 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:894 +#: js/messages.php:900 #, 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:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduza um número válido!" -#: js/messages.php:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Introduza um comprimento válido!" -#: js/messages.php:904 +#: js/messages.php:910 #, 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:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, 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:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduza um número válido!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3116,8 +3123,8 @@ msgstr "Re-consultar" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Base de Dados" @@ -3952,7 +3959,7 @@ msgstr "O Índice %s foi eliminado." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4009,8 +4016,8 @@ msgstr "Vista" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4372,39 +4379,39 @@ msgstr "Este servidor MySQL não suporta o mecanismo de armazenamento %s." msgid "Unknown table status:" msgstr "Estado da tabela desconhecido:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "A base de dados fonte `%s` não foi encontrada!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "A base de dados de destino `%s` não foi encontrada!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Base de dados inválida:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nome da tabela inválido:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Falha ao mudar o nome da tabela %1$s para %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s renomeada para %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Não foi possível guardar as preferências de interface da tabela!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4413,7 +4420,7 @@ msgstr "" "Falha ao limpar as preferências de interface da tabela (consulte " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4424,19 +4431,19 @@ msgstr "" "serão constantes quando recarregar esta página. Favor verifique se a " "estrutura da tabela foi alterada." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária tem de ser \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Impossível renomear índice para PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nenhuma parte do índice definida!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11422,61 +11429,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Erro: Relação já existe." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Relação FOREIGN KEY adicionada" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Erro: As características relacionais estão desactivadas!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Relação interna adicionada" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Relação FOREIGN KEY adicionada" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Erro: Relação não adicionada." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11612,18 +11619,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "sem Descrição" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11631,14 +11638,14 @@ msgid "" "configuration storage there." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabelas de configuração de armazenamento phpMyAdmin em falta" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12341,27 +12348,27 @@ msgstr "Adiciona novo campo" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Não foram encontradas tabelas na base de dados" #: libraries/rte/rte_words.lib.php:43 @@ -12388,13 +12395,13 @@ msgstr "Acrescenta um utilizador" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Não foram encontradas tabelas na base de dados" #: libraries/rte/rte_words.lib.php:57 @@ -12421,13 +12428,13 @@ msgstr "Enviado" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Não tem permissões suficientes para aceder aqui, neste momento!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Não foram encontradas tabelas na base de dados" #: libraries/rte/rte_words.lib.php:71 @@ -14196,7 +14203,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14314,7 +14321,7 @@ msgstr "No Início da Tabela" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14337,6 +14344,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "No Início da Tabela" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16022,39 +16035,46 @@ msgstr "Acções" msgid "Constraint properties" msgstr "Limitadores para a tabela" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Adicionar restrições (constraints)" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16066,13 +16086,13 @@ msgstr "Escolha a coluna para mostrar" msgid "Foreign key constraint %s has been dropped" msgstr "Limite de chave estrangeira" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Limitadores para a tabela" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "Adiciona novo campo" diff --git a/po/pt_BR.po b/po/pt_BR.po index f71a7a362a..11c40b5753 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-11-07 13:09+0000\n" "Last-Translator: popinha13 \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" @@ -63,11 +63,12 @@ msgstr "Comentários de tabela:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -520,7 +521,7 @@ msgstr "" msgid "Succeeded" msgstr "Sucesso" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Falha" @@ -622,7 +623,7 @@ msgstr "O comando \"DROP DATABASE\" está desabilitado." 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:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -647,7 +648,7 @@ msgstr "" msgid "General settings" msgstr "Configurações gerais" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1059,7 +1060,7 @@ msgstr "Você deve adicionar pelo menos uma coluna." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "Ver SQL" @@ -1526,7 +1527,7 @@ msgstr "Demonstrar saída" msgid "Status" msgstr "Status" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1979,7 +1980,7 @@ msgid "Second step of normalization (2NF)" msgstr "Segunda etapa da normalização (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Concluído" @@ -2059,7 +2060,7 @@ msgstr "Nenhuma dependência selecionada!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Salvar" @@ -2139,7 +2140,7 @@ msgstr "Selecione duas colunas diferentes" msgid "Data point content" msgstr "Conteúdo do ponteiro de dados" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2191,6 +2192,18 @@ msgstr "" "desejar insira-os diretamente" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL aceita valores que não seria possível seleciona-los com a barra; se o " +"desejar insira-os diretamente" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2198,24 +2211,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:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Selecionar chave referenciada" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Selecionar chave estrangeira" -#: js/messages.php:536 +#: js/messages.php:542 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:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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 +2236,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:542 +#: js/messages.php:548 msgid "Page name" msgstr "Nome da página" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Selecionar página" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Páginas livres" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Apagar página" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Sem título" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Favor escolher uma página para editar" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Por favor, digite um número válido" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Página apagada com sucesso :)" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "Exportar esquema relacional" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Modificações foram salvas" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "Adicionar uma opção para a coluna \"%s\"." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d objeto(s) criado(s)." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Submit" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Pressione ESC para cancelar a edição." -#: js/messages.php:564 +#: js/messages.php:570 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 +2313,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:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Arraste para reordenar." -#: js/messages.php:568 +#: js/messages.php:574 msgid "Click to sort results by this column." msgstr "Clique para ordenar os resultados por esta coluna." -#: js/messages.php:570 +#: js/messages.php:576 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 +2332,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Clique para marcar/desmarcar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Clique duas vezes para copiar o nome da coluna." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Clique na seta
para alternar a visibilidade da coluna." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Mostrar tudo" -#: js/messages.php:581 +#: js/messages.php:587 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 +2360,13 @@ msgstr "" "Editar, Marcar, Editar, Copiar e Apagar podem não funcionar mais depois de " "salvar." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2361,106 +2374,106 @@ msgstr "" "Você realmente quer ver todas as linhas? Para uma tabela grande isto poderia " "travar o nevegador." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Tamanho original" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Cancelar" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortado" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sucesso" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importar estado" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Solte os arquivos aqui" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Primeiro escolha um banco de dados" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Ir para o link:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copiar nome da coluna." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Gerar senha" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Gerar" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mais" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Mostrar painel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Ocultar painel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Mostrar itens ocultos da árvore de navegação." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Encerrar ligação com painel principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2470,27 +2483,27 @@ msgstr "" "atualização. A nova versão é %s, lançada em %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", última versão estável:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "atualizado(a)" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Criar view" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Enviar relatório de erros" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Cadastrar relatório de erro" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2498,15 +2511,15 @@ msgstr "" "Ocorreu um erro fatal no JavaScript. Gostaria de enviar um relatório de " "erros?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Alterar configurações de relatórios" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Exibir detalhes de relatório" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2514,7 +2527,7 @@ msgstr "" "A exportação está incompleta devido ao baixo limite de tempo de execução nas " "configurações do PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2523,61 +2536,61 @@ 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Alguns erros foram detectados no servidor!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Por favor, olhe na parte inferior da janela." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorar Tudo" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executar esta consulta novamente?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Você realmente deseja excluir a busca \"%s\"?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s consultas executadas %s vezes em %s segundos." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s parâmetro(s) passado(s)" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Mostrar comentários" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Ocultar resultados" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tempo gasto:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2605,347 @@ msgstr "" "\"Dados Offline de Sites\" pode ajudar. No Safari, este problema é " "normalmente causado pelo \"Navegação Privada\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Copiar tabelas para" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Adicionar prefixo de tabela" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Substituir a tabela com o prefixo" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiar tabelas com prefixo" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Próximo" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hoje" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Janeiro" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Fevereiro" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Março" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Abril" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maio" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Junho" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Julho" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Agosto" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Setembro" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Outubro" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembro" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dezembro" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Abr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ago" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Set" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Out" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dez" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Domingo" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Segunda" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Terça" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Quarta" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Quinta" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Sexta" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sábado" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dom" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Seg" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Ter" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Qua" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Qui" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Sex" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sab" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Dom" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Seg" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ter" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Qua" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Qui" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Sex" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sab" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Sem" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendário-mês-ano" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Sufixo de ano: nenhum" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hora" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuto" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Segundo" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Este campo é obrigatório" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Por favor, corrija este cambo" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Por favor, digite um correio eletrônico válido" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Por favor, digite um endereço eletrônico válido" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Por favor, digite uma data válida" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Por favor, digite uma data válida" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Por favor, digite um número válido" -#: js/messages.php:899 +#: js/messages.php:905 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:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Por favor, digite apenas números" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Por favor, digite o mesmo valor novamente" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Por favor, digite até {0} caractéres" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Por favor, digite pelo menos {0} caracteres" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Por favor, digite um valor entre {0} and {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Por favor, digite um data válida ou um tempo" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Por favor, digite um número HEXADECIMAL válido" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3034,8 +3047,8 @@ msgstr "Fazer novo consulta" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Banco de dados" @@ -3835,7 +3848,7 @@ msgstr "Índice %s foi eliminado." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3895,8 +3908,8 @@ msgstr "Visualizar" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4261,39 +4274,39 @@ msgstr "Esse servidor MySQL não suporta o motor de armazenamento %s." msgid "Unknown table status:" msgstr "Status desconhecido de tabela:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "O banco de dados fonte `%s` não foi encontrado!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "O banco de dados alvo `%s` não foi encontrado!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Banco de dados inválido:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Nome de tabela inválido:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Erro ao renomear tabela %1$s para %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "A tabela foi renomeada de %1$s para %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Não foi possível salvar as preferências visuais da tabela!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4302,7 +4315,7 @@ msgstr "" "Falha ao limpar as preferências visuais da tabela (veja $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4313,19 +4326,19 @@ msgstr "" "permanecerão depois que você recarregar esta página. Favor cheque se a " "estrutura da tabela foi alterada." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "O nome da chave primária deve ser \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Não foi possível renomear o índice para PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nenhuma parte de índice definida!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Erro ao criar chave externa no %1$s (check data types)" @@ -11233,47 +11246,47 @@ msgstr "Formata o texto como JSON destacando a sintaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formata o texto como XML destacando a sintaxe." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Erro: relação já existe." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relação de FOREIGN KEY foi adicionada." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Erro: Relação de FOREIGN KEY não pôde ser adicionada!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Erro: Perda de Índice(s) de coluna(s)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Erro: Relacionamentos estão desativados!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Adicionado modelo interno." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Erro: Não foi possível adicionar relação interna!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relação de FOREIGN KEY foi removida." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Erro: Relação de FOREIGN KEY não pode ser removida!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Erro: Relação interna não pode ser removida!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relação interna foi removida." @@ -11399,18 +11412,18 @@ msgstr "" "Logar novamente no phpMyAdmin para carregar o arquivo de configuração " "atualizado." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "sem descrição" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgid "" @@ -11420,7 +11433,7 @@ msgstr "" "%sCreate%s as tabelas de armazenamento de configuração do phpMyAdmin " "perdidas." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11428,7 +11441,7 @@ msgstr "" "%sCreate%s o armazenamento de configuração do phpMyAdmin no banco de dados " "atual." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12113,26 +12126,29 @@ msgid "routine" msgstr "rotina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Você não tem privilégios suficientes para criar uma nova rotina" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Nenhuma rotina com o nome %1$s encontrada no banco de dados %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12153,12 +12169,15 @@ msgid "trigger" msgstr "gatilho" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Você não tem permissões suficientes para criar um novo gatilho" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Nenhum gatilho com o nome %1$s encontrado no banco de dados %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12179,12 +12198,15 @@ msgid "event" msgstr "evento" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Você não tem permissões suficientes para criar um novo evento" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nenhum evento com o nome %1$s foi encontrado no banco de dados %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14056,7 +14078,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14178,7 +14200,7 @@ msgstr "No início da tabela" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14201,6 +14223,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "at beginning of table" +msgid "Unexpected ordering of clauses." +msgstr "No início da tabela" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15761,31 +15789,38 @@ msgstr "Ações" msgid "Constraint properties" msgstr "Propriedades da restrição" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Somente colunas com índice serão exibidas. Você pode definir um índice " "abaixo." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Restrição de chave estrangeira" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Adicionar restrição" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relações internas" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15793,7 +15828,7 @@ msgstr "" "Uma relação interna é desnecessária quando uma relação de CHAVE ESTRANGEIRA " "correspondente existe." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Marque a coluna para exibir:" @@ -15802,11 +15837,11 @@ msgstr "Marque a coluna para exibir:" msgid "Foreign key constraint %s has been dropped" msgstr "Restrição de chave estrangeira %s foi eliminada" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Nome da restrição" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Adicionar coluna" diff --git a/po/ro.po b/po/ro.po index f7bf9295f7..4d842e542f 100644 --- a/po/ro.po +++ b/po/ro.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-10 18:25+0000\n" "Last-Translator: Bogdan Ciobaca \n" "Language-Team: Romanian -Control+Click pentru a îndepărta coloana " "din instrucțiunea ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Click pentru a selecta/deselecta." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dublu click pentru a copia denumirea coloanei." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Arată tot" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2428,13 +2435,13 @@ msgstr "" "checkbox, sau link-urile de Editare, Copiere si Ștergere pot să nu " "funcționeze după salvare." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 #, fuzzy msgid "" "Do you really want to see all of the rows? For a big table this could crash " @@ -2443,112 +2450,112 @@ msgstr "" "Sigur doriţi să vedeţi toate rândurile? Pentru un tabel mare aceasta poate " "provoca crash-ul browser-ului." -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Textul original" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "anulează" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Întrerupt" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Succes" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Starea importului" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dați drumul la fişiere aici" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Selectaţi mai întâi baza de date" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Mergi la adresa link-ului:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Copie denumirea coloanei." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generează parolă" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generează" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mai mult" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Arată panou" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Ascunde panou" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Afişează itemii ascunşi din arborele din cadrul din stânga." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Deconectarea de la panoul principal" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2558,56 +2565,56 @@ msgstr "" "procesul de actualizare. Noua versiune %s a fost publicată în data de %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", ultima versiune stabilă:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "la zi" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Creare view" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Portul serverului" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Trimite raport de eroare" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Modificați setările rapoartelor" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Afișează detaliile raportului" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2617,65 +2624,65 @@ msgstr "" "trimiterea datelor, unele câmpuri pot fi ignorate datorită configurației " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Anumite erori au fost detectate pe server!" -#: js/messages.php:677 +#: js/messages.php:683 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:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignoră tot" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Executați această interogare din nou?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Sigur doriți să ştergeţi acest marcaj?" -#: js/messages.php:705 +#: js/messages.php:711 #, fuzzy msgid "Some error occurred while getting SQL debug info." msgstr "A avut loc o eroare la obţinerea informaţiilor SQL de debug." -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "Comanda SQL" -#: js/messages.php:708 +#: js/messages.php:714 #, fuzzy, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) trimise" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Comentarii tabel" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Ascunde rezultatele căutării" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2684,384 +2691,384 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Copiază baza de date" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Înlocuiește prefixul tabelei" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Copiază tabelul cu prefix" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Anterior" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Următoarea" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Astăzi" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Ianuarie" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februarie" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Martie" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Aprilie" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mai" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Iunie" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Iulie" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Septembrie" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Octombrie" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Noiembrie" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Decembrie" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Ian" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Mai" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Iun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Iul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Oct" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Noi" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Duminică" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Luni" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Marți" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Miercuri" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Joi" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Vineri" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sâmbătă" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Dum" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Lun" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mie" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Joi" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Vin" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sâm" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Du" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Lu" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Mi" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Jo" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Vi" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sâ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Săpt" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-lună-an" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "Nici unul(a)" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Oră" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Secundă" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Acest câmp este necesar" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Utilizare câmp text" -#: js/messages.php:889 +#: js/messages.php:895 #, 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:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Introduceţi un număr valid!" -#: js/messages.php:891 +#: js/messages.php:897 #, 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:894 +#: js/messages.php:900 #, 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:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Introduceţi un număr valid!" -#: js/messages.php:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, 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:904 +#: js/messages.php:910 #, 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:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Vă rugăm să nu introduceţi mai mult de {0} caractere" -#: js/messages.php:913 +#: js/messages.php:919 #, 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:918 +#: js/messages.php:924 #, fuzzy msgid "Please enter a value between {0} and {1} characters long" msgstr "Vă rugăm sa introduceţi o valoare între {0} şi {1} caractere de lungă" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Introduceţi un număr valid!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3160,8 +3167,8 @@ msgstr "Reinterogare" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Bază de date" @@ -3995,7 +4002,7 @@ msgstr "Indexul %s a fost aruncat." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4053,8 +4060,8 @@ msgstr "Vizualizare" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabel" @@ -4425,39 +4432,39 @@ msgstr "Acest server MySQL nu susține motorul de stocare %s." msgid "Unknown table status:" msgstr "Stare tabel necunoscută:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Baza de date `%s` nu a fost găsită!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Baza de date țintă `%s` nu a fost găsită!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Bază de date invalidă:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Denumire de tabel invalidă:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Eroare la redenumirea tabelului %1$s în %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelul %1$s a fost redenumit în %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nu am putut salva tabela cu preferinţele UI!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4466,7 +4473,7 @@ msgstr "" "Curățarea eşuată a preferințelor de interfață (vezi $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4477,19 +4484,19 @@ msgstr "" "vor fi salvate după reîncărcarea paginii. Vă rugăm verificați dacă structura " "tabelei s-a schimbat." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Numele cheii primare trebuie să fie \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Nu puteți redenumi indexul în PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nu sînt definite părți din index!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, fuzzy, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Eroare la crearea cheii străine pe %1$s (verifică tipurile datelor)" @@ -11843,61 +11850,61 @@ msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." msgid "Formats text as XML with syntax highlighting." msgstr "Formatează textul ca interogare SQL cu evidențierea sintaxei." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Eroare: relația deja există." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Modificările au fost salvate" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Eroare: Relația nu a fost adăugată!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Relație internă adăugată" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Modificările au fost salvate" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Eroare: Relația nu a fost adăugată." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12034,18 +12041,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Nu există descriere" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -12053,14 +12060,14 @@ msgid "" "configuration storage there." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Tabele de stocare a configurării phpMyAdmin absente" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12815,26 +12822,29 @@ msgid "routine" msgstr "rutină" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nu dețineți privilegiile necesare pentru a crea o rutină" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Nicio rutină cu numele %1$s nu a fost gasită în baza de date %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12862,13 +12872,13 @@ msgstr "Declanșatori" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Nu s-a găsit nici un tabel în baza de date." #: libraries/rte/rte_words.lib.php:57 @@ -12896,13 +12906,13 @@ msgstr "Eveniment" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nu dețineți drepturi de acces pentru a vă afla aici!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nu s-a găsit nici un tabel în baza de date." #: libraries/rte/rte_words.lib.php:71 @@ -14709,7 +14719,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14831,7 +14841,7 @@ msgstr "La începutul tabelului" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14854,6 +14864,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "La începutul tabelului" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16530,31 +16546,38 @@ msgstr "Acțiuni" msgid "Constraint properties" msgstr "Restrictii pentru tabele" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Constrîngere de cheie străină" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Adaugă constrângeri" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relații interne" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relație internă" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -16562,7 +16585,7 @@ msgstr "" "Nu este necesară o relație internă atunci cînd există o cheie externă " "corespondentă." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16574,11 +16597,11 @@ msgstr "Selectează coloana pentru afișare" msgid "Foreign key constraint %s has been dropped" msgstr "Constrîngere de cheie străină" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Denumire constrîngere" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/ru.po b/po/ru.po index 181f4ea111..e368d1fd93 100644 --- a/po/ru.po +++ b/po/ru.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-20 17:08+0000\n" "Last-Translator: Артем \n" "Language-Team: Russian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2294,26 +2301,26 @@ msgstr "" "переключения ASC/DESC.
- Удерживая Ctrl или Alt (для Mac: удерживая " "Shift и Option), кликните для удаления столбца из класса ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Кликните для установки/снятия отметки." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Кликните дважды для копирования имени столбца." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Кликните выпадающую стрелку
для переключения видимости столбца." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Показать все" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2322,13 +2329,13 @@ msgstr "" "могут не работать функции связанные с редактированием сетки, выставления " "галочки, ссылки редактирования, копирования и удаления." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Пожалуйста, введите допустимую шестнадцатеричную строку. Допустимыми знаками " "являются 0-9, A-F." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2336,104 +2343,104 @@ msgstr "" "Вы действительно хотите отобразить все строки? При большом количестве данных " "возможно отключение браузера." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Исходный размер" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Отмена" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прервано" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Успех" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Импортировать состояние" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Перетащите файлы сюда" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Выберите базу данных" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Печать" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Большинство значений можно отредактировать
дважды кликнув прямо на них." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "Возможно редактировать большинство значений
кликнув прямо на них." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Перейти к ссылке:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Скопировать имя столбца." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Для копирования имени столбца в буфер обмена, сделайте щелчок правой кнопкой " "мышки." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Создать пароль" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Генерировать" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Ещё" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Раскрыть панель" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Скрыть панель" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Отображать скрытые пункты дерева навигации." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Связать с главной панелью" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Отсоединить от основной панели" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запрошенная страница не найдена в истории, возможно, истекло время ее " "хранения." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2443,49 +2450,49 @@ msgstr "" "Новейшая версия %s, выпущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", последняя стабильная версия:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "актуально" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Создать представление" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Отправить отчёт об ошибках" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Отправить отчёт об ошибке" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Произошла фатальная ошибка JavaScript. Вы хотите отправить отчёт об ошибке?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Изменить настройки отчёта" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Показать детали отчёта" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "Ваш экспорт незавершён из-за ограничений времени выполнения на уровне PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2495,60 +2502,60 @@ msgstr "" "поля могут быть проигнорированы согласно значения переменной max_input_vars " "в PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "На сервере обнаружены некоторые ошибки!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Пожалуйста, посмотрите вниз текущего окна." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Игнорировать всё" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" "В соответствии с вашими настройками они заносятся в данное время, подождите, " "пожалуйста." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Выполнить запрос ещё раз?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Вы действительно хотите удалить эту закладку?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "В процессе получения информации по отладке SQL произошла ошибка." -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s запрос(ов) выполнено %s раз(а) за %s секунд(у/ы)." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s аргумент(ов/а) передано" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Отобразить аргументы" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Скрыть аргументы" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Занято времени:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2563,349 +2570,349 @@ msgstr "" "содержимое и данные пользователя\" может ее решить. В Safari, данную " "проблему обычно вызывает установка \"Режим частного доступа\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Скопировать таблицы в" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Добавить префикс таблицы" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Заменить префикс таблицы" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копировать таблицу с префиксом" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Предыдущий" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Следующий" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Сегодня" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Январь" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Февраль" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Март" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Апрель" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Май" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Июнь" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Июль" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Август" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Сентябрь" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Октябрь" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Ноябрь" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Декабрь" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Дек" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Воскресенье" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Понедельник" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Вторник" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Среда" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Четверг" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Пятница" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Суббота" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Вс" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Пн" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Ср" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Вс" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Нед." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "календарь-месяц-год" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Час" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Минута" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Секунда" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Это обязательное поле" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Пожалуйста, исправьте это поле" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Введите правильный email" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Пожалуйста, введите правильный URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Введите правильную дату" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Введите правильную дату ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Пожалуйста, введите правильное числовое значение" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Пожалуйста, введите правильный номер кредитной карты" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Пожалуйста, введите только цифровые символы" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Введите то же значение еще раз" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Пожалуйста, введите не более {0} символ(ов/а)" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Пожалуйста, введите не минее {0} символ(ов/а)" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Пожалуйста, введите значение длиной между {0} и {1} символами(ом)" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Пожалуйста, введите значение между {0} и {1} символами(ом)" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Пожалуйста, введите значение меньшее или равное {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Пожалуйста, введите значение, большее или равное {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Введите правильную дату или время" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Пожалуйста, введите правильное значение HEX" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3005,8 +3012,8 @@ msgstr "Повторный запрос" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "База данных" @@ -3813,7 +3820,7 @@ msgstr "Индекс %s был удален." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3870,8 +3877,8 @@ msgstr "Представление" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Таблица" @@ -4237,39 +4244,39 @@ msgstr "Данный сервер MySQL не поддерживает тип т msgid "Unknown table status:" msgstr "Неизвестный статус таблицы:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "База данных `%s`, являющаяся источником, не найдена!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "База данных `%s`, являющаяся целевой, не найдена!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Некорректная база данных:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Некорректное имя таблицы:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Не удалось переименовать таблицу %1$s в %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблица %1$s была переименована в %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Не удалось сохранить настройки пользовательского интерфейса!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4278,7 +4285,7 @@ msgstr "" "Ошибка при очистке таблицы содержащей настройки пользовательского интерфейса " "(смотрите переменную $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4289,19 +4296,19 @@ msgstr "" "перезагрузки страницы, изменения интерфейса будут отменены. Пожалуйста, " "проверьте изменена ли структура таблицы." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Имя первичного индекса должно быть \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Невозможно переименовать индекс в PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Части индекса не определены!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Ошибка создания внешнего ключа на %1$s (проверьте типы данных)" @@ -11024,47 +11031,47 @@ msgstr "Форматирует текст в виде JSON с подсветко msgid "Formats text as XML with syntax highlighting." msgstr "Форматирует текст в виде XML с подсветкой синтаксиса." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Ошибка: Связь уже существует." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Добавлена связь FOREIGN KEY." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Ошибка: связь внешнего ключа невозможно добавить!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Ошибка: отсутствует индекс в столбце." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Ошибка: Функция связи отключена!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Добавлена внутренняя связь." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Ошибка: внутреннюю связь невозможно добавить!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Связь внешнего ключа была удалена." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Ошибка: связь внешнего ключа невозможно удалить!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Ошибка: внутреннюю связь невозможно удалить!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Внутренняя связь удалена." @@ -11186,18 +11193,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдите в phpMyAdmin, чтобы загрузить обновленный конфигурационный файл." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "нет описания" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11206,13 +11213,13 @@ msgstr "" "%sСоздать%s базу данных с именем 'phpmyadmin' и настроить там хранение " "конфигурации phpMyAdmin." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sСоздать%s хранилище конфигурации phpMyAdmin в текущей базе данных." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sСоздать%s отсутствующие таблицы хранения конфигурации phpMyAdmin." @@ -11887,26 +11894,29 @@ msgid "routine" msgstr "процедура" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "У вас недостаточно прав для создания процедуры" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "В базе данных %2$s процедура с именем %1$s не найдена" #: libraries/rte/rte_words.lib.php:43 @@ -11927,12 +11937,15 @@ msgid "trigger" msgstr "триггер" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "У вас недостаточно прав для создания триггера" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "В базе данных %2$s триггер с именем %1$s не найден" #: libraries/rte/rte_words.lib.php:57 @@ -11953,12 +11966,15 @@ msgid "event" msgstr "событие" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "У вас недостаточно прав для создания события" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "В базе данных %2$s не найдено событие с именем %1$s" #: libraries/rte/rte_words.lib.php:71 @@ -13782,7 +13798,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13885,7 +13901,7 @@ msgstr "Неожиданное начало выражения." msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13906,6 +13922,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Неизвестное ключевое слово." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Неожиданное начало выражения." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Ожидалось имя сущности." @@ -15415,31 +15437,38 @@ msgstr "Действия" msgid "Constraint properties" msgstr "Свойства ограничения" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Будут отображаться только столбцы с индексом. Вы можете определить индекс " "ниже." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Ограничение внешнего ключа" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Добавить ограничение" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Внутренние связи" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Внутренняя связь" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15447,7 +15476,7 @@ msgstr "" "Внутренняя связь не обязательна, если существует соответствующая связь с " "помощью внешнего ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Выбор отображаемого столбца:" @@ -15456,11 +15485,11 @@ msgstr "Выбор отображаемого столбца:" msgid "Foreign key constraint %s has been dropped" msgstr "Ограничение внешнего ключа %s удалено" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Ограничения внешнего ключа" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Добавить столбец" diff --git a/po/si.po b/po/si.po index b99726c7bf..de9fb157e1 100644 --- a/po/si.po +++ b/po/si.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-03-24 04:14+0000\n" "Last-Translator: Madhura Jayaratne \n" "Language-Team: Sinhala - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "සලකුණු කිරීමට/ ඉවත් කිරීමට ක්ලික් කරන්න." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "තීර නාමය පිටපත් කිරීම සඳහා ද්වි ක්ලික් කරන්න." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "තීර පෙන්වීමට/සැඟවීමට
ඊතලය ක්ලික් කරන්න." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "සියල්ල පෙන්වන්න" -#: js/messages.php:581 +#: js/messages.php:587 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,129 +2401,129 @@ msgstr "" "මෙම වගුවෙහි අනුපම තීරුවක් නැත. සුරැකීමෙන් අනතුරුව වෙනස් කිරීමට, පිටපත් කිරීමට, මකා දැමීමට අදාළ " "ඇඳීම් ක්‍රියා විරහිත වනු ඇත." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "මුල් පිහිටුම" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "අවලංගු කරන්න" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "අත්හැර දමන ලදි" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "ආනයන පෙරනිමි" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "වගු තෝරන්න" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "මුද්‍රණය කරන්න" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ද්විත්ව-ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "අන්තර්ගත දත්ත මත ක්ලික් කිරීමෙන් ඔබට
බොහෝ තීරවල අඩංගු දත්ත වෙනස් කල හැක." -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link." msgid "Go to link:" msgstr "සබැඳීම වෙත යන්න." -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "තීර නම් පිටපත් කරන්න." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "පසුරු පුවරුව වෙත පිටපත් කිරීම සඳහා තීර නාමය දකුණු ක්ලික් කරන්න." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "මුරපදය උත්පාදනය කරන්න" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "උත්පාදනය කරන්න" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "තවත්" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "පැනලය පෙන්වන්න" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "පැනලය සඟවන්න" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in navigation panel" msgid "Show hidden navigation tree items." msgstr "යාත්‍රණ පැනලයේ ලාංඡනය පෙන්වන්න" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main panel" msgid "Unlink from main panel" msgstr "ප්‍රධාන පැනලය රිසි සේ සකසන්න" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "ඔබ ඉල්ලු පිටුව ඉතිහාසයේ හමු නොවිණි, එය කල් ඉකුත් වී ඇතිවා විය හැකිය." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2526,124 +2533,124 @@ msgstr "" "අනුවාදය %s අනුවාදයයි (%s දින නිකුත් කරන ලද)." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", නවතම ස්ථායි අනුවාදය:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "යාවත්කාලීන" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "දසුනක් සාදන්න" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "සර්වරයේ පොර්ට්" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "සිටුවම් වෙනස් කිරීම" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "විවෘත වගු පෙන්වන්න" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "නොසලකන්න" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "මෙම විමසුම මෙහි නැවත පෙන්වන්න" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "\"%s\" ක්‍රියාත්මක කිරීමට ඔබට ඇත්තෙන්ම අවශ්‍යද?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "ක්‍රියාත්මක කරන ලද විමසුම්" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "වගු විස්තර" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "සෙවුම් ප්‍රතිඵල සඟවන්න" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2652,383 +2659,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "වගු නාම මූලයක් එක් කරන්න:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "වගු නාම මූලය ප්‍රතිස්ථාපනය කරන්න" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "නාම මූලය සහිත වගු පිටපත් කරන්න" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "පෙර" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "මීලඟ" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "අද දින" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "ජනවාරි" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "පෙබරවාරි" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "මාර්තු" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "අ‍ප්‍රේල්" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "මැයි" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "ජුනි" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "ජූලි" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "අගෝස්තු" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "සැප්තැම්බර්" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "ඔක්තෝම්බර්" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "නොවැම්බර්" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "දෙසැම්බර්" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ජනවාරි" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "පෙබරවාරි" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "මාර්තු" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "අ‍ප්‍රේල්" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "මැයි" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ජුනි" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ජූලි" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "අගෝස්තු" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "සැප්තැම්බර්" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ඔක්තෝම්බර්" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "නොවැම්බර්" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "දෙසැම්බර්" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "ඉරිදා" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "සඳුදා" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "අඟහරු‍වදා" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "බදාදා" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "බ්‍රහස්පතින්දා" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "සිකුරාදා" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "සෙනසුරාදා" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "ඉරිදා" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "සඳුදා" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "අඟහ" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "බදාදා" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "බ්‍රහස්" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "සිකුරා" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "සෙනසු" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ඉරි" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "සඳු" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "අඟ" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "බදා" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "බ්‍රහ" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "සිකු" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "සෙන" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "සති" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "දින දර්ශන-මාස-වසර" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "කිසිවක් නැත" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "පැය" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "මිනිත්තු" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "තත්පර" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "පෙළ ක්ෂේත්‍ර භාවිතා කරන්න" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "වලංගු පොර්ට් අංකයක් නොවේ" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3124,8 +3131,8 @@ msgstr "උප විමසුම" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "දත්තගබඩාව" @@ -4002,7 +4009,7 @@ msgstr "%s සූචිය හලන ලදි." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4058,8 +4065,8 @@ msgstr "දසුන" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "වගුව" @@ -4434,40 +4441,40 @@ msgstr "මෙම MySQL සේවාදායකයේ %s ගබඩා යන් msgid "Unknown table status:" msgstr "වගු තත්වය සඳහා නොහඳුනන අගයක්: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "`%s` මූලාශ්‍ර දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "`%s` ඉලක්කගත දත්තගබඩාව හමු නොවිණි!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "වලංගු නොවන දත්තගබඩාව:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "වලංගු නොවන වගු නම:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s වගුව %2$s ලෙසට නම වෙනස් කරන ලදි." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4476,7 +4483,7 @@ msgstr "" "අතුරුමුහුණත සඳහා තේරීම් අඩංගු ගොනුව පවිත්‍ර කිරීම අසමත් විය ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s බලන්න)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4486,19 +4493,19 @@ msgstr "" "අතුරුමුහුණත් විචල්‍යය \"%s\" සුරැකිය නොහැක. මෙම පිටුව ප්‍රතිපූර්ණයෙන් පසු සිදුකල වෙනස්කම් අහිමි වනු " "ඇත. අදාල වගුවේ සැකිල්ල වෙනස් වී ඇත්දැයි පරීක්ෂාකර බලන්න." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "%1$s මත අන්‍ය මූලය සෑදීමේදී දෝෂ ඇතිවිය (දත්ත වර්ග පරීක්ෂා කරන්න)" @@ -11395,61 +11402,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been added." msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "අභ්‍යන්තර සබඳතා එක් කරන ලදි" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read!" msgid "Error: Internal relation could not be added!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been removed." msgstr "වෙනස් කිරීම් සුරකින ලදි" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read!" msgid "Error: Internal relation could not be removed!" msgstr "ගොනුව කියවිය නොහැක!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11584,18 +11591,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "යාවත්කාලීන කරන ලද වින්‍යාස ගොනුව පූරණය සඳහා phpMyAdmin වෙත නැවත වරක් ඇතුල් වන්න." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "විස්තරයක් නොමැත" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11603,14 +11610,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin වින්‍යාස ගබඩාවේ අඩු වගු" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12287,26 +12294,29 @@ msgid "routine" msgstr "නෛත්‍යක" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "නෛත්‍යකයක් සැදීම සඳහා ඔබට ප්‍රමාණවත් වරප්‍රසාද නොමැත" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "%2$s දත්තගබඩාවේ %1$s නමින් නෛත්‍යක කිසිවක් හමු නොවිණි" #: libraries/rte/rte_words.lib.php:43 @@ -12327,12 +12337,15 @@ msgid "trigger" msgstr "ප්‍රේරක" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "ප්‍රේරකයක් සැදීම සඳහා ඔබට ප්‍රමාණවත් වරප්‍රසාද නොමැත" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "%2$s දත්තගබඩාවේ %1$s නමින් ප්‍රේරක කිසිවක් හමු නොවිණි" #: libraries/rte/rte_words.lib.php:57 @@ -12353,12 +12366,15 @@ msgid "event" msgstr "සිද්ධිය" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "සිද්ධියක් සැදීම සඳහා ඔබට ප්‍රමාණවත් වරප්‍රසාද නොමැත" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "%2$s දත්තගබඩාවේ %1$s නමින් සිද්ධි කිසිවක් හමු නොවිණි" #: libraries/rte/rte_words.lib.php:71 @@ -14080,7 +14096,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14200,7 +14216,7 @@ msgstr "වගුව මුලදී" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14223,6 +14239,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "වගුව මුලදී" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15831,37 +15853,44 @@ msgstr "ක්‍රියාව" msgid "Constraint properties" msgstr "වගුව සඳහා සීමා බාධක" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "අන්‍ය මූල නිරෝධය" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "සීමා බාධවන් එක් කරන්න" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "අභ්‍යන්තර සබඳතා" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "අභ්‍යන්තර සබඳතා" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "අදාල අන්‍ය මූලය ඇති විට අභ්‍යන්තර සබඳතාවක් අවශ්‍ය නොවේ." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන්න:" @@ -15871,13 +15900,13 @@ msgstr "පෙන්වීම සඳහා තීරය ‍තෝරාගන් msgid "Foreign key constraint %s has been dropped" msgstr "අන්‍ය මූල නිරෝධය" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "වගුව සඳහා සීමා බාධක" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/sk.po b/po/sk.po index 6e13b84d63..f4f854062d 100644 --- a/po/sk.po +++ b/po/sk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-09-26 18:21+0000\n" "Last-Translator: Jozef Pistej \n" "Language-Team: Slovak - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Kliknite pre označenie/odznačenie." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dvakrát kliknite pre skopírovanie názvu stĺpca." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Zobraziť všetko" -#: js/messages.php:581 +#: js/messages.php:587 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 +2309,11 @@ msgstr "" "zaškrtávanie, úprava, kopírovanie a mazanie liniek nemusí fungovať po " "uložení." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2314,100 +2321,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Originálna dĺžka" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "zrušiť" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prerušené" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Úspech" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Stav importu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Presuňte súbory sem" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Najprv vyberte databázu" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Prejsť na odkaz:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopírovať názov stĺpca." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Vytvoriť heslo" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Vytvoriť" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Viac" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Zobraziť panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Skryť panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Zobraziť skryté položky navigácie." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Zrušiť prepojenie s hlavným panelom" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2417,41 +2424,41 @@ msgstr "" "Najnovšia verzia je %s a bola vydaná %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", posledná stabilná verzia:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktuálna" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Vytvoriť pohľad" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Poslať chybové hlásenie" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Odoslať chybové hlásenie" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Zmeniť nastavenia hlásení" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Zobraziť podrobnosti hlásenia" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2459,7 +2466,7 @@ msgstr "" "Export nie je kompletný kvôli krátkemu času vykonávania (execution time) v " "nastaveniach PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2468,58 +2475,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Na serveri boli zistené chyby!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Prosím, pozrite sa na spodnú časť okna." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorovať všetko" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Vykonať tento dopyt znovu?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Naozaj chcete odstrániť túto záložku?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Zobraziť argumenty" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Skryť argumenty" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Ubehnutý čas:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2535,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Skopírovať tabuľky do" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Pridať prefix tabuľky" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Nahradiť predponu tabuľky" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Skopírovať tabuľku s predponou" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Predchádzajúci" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Ďalší" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Dnes" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Január" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Február" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Marec" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Apríl" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Máj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Jún" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Júl" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "August" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "September" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Október" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "November" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "December" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Máj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jún" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Júl" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Nedeľa" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Pondelok" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Utorok" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Streda" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Štvrtok" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Piatok" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Sobota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Po" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Út" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "St" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Št" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pi" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "So" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "St" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Št" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pi" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "So" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Týž" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalendár-mesiac-rok" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "žiadny" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Hodiny" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minúty" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekundy" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Toto pole je povinné" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Prosím opravte toto pole" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Prosím zadajte platnú emailovú adresu" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Prosím zdajte platnú adresu URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Prosím zadajte platný dátum" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Prosím zadajte platný dátum ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Prosím zadajte platné číslo" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Prosím zadajte platné číslo kreditnej karty" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Prosím zadajte iba čísla" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Prosím zadajte tú istú hodnotu ešte raz" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Prosím zadajte nie viac ako {0} znakov" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Prosím zadajte najmenej {0} znakov" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Prosím zadajte hodnotu medzi {0} a {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Prosím zadajte hodnotu menšiu alebo rovnú {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosím zadajte hodnotu väčšiu alebo rovnú {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Prosím zadajte platný dátum alebo čas" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Prosím zdajte platný HEX vstup" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2967,8 +2974,8 @@ msgstr "Znovu spustiť dopyt" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Databáza" @@ -3768,7 +3775,7 @@ msgstr "Index pre %s bol odstránený." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3826,8 +3833,8 @@ msgstr "Pohľad" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabuľka" @@ -4193,39 +4200,39 @@ msgstr "Tento MySQL server nepodporuje úložný systém %s." msgid "Unknown table status:" msgstr "Neznámy status tabuľky:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Zdrojová databáza `%s` nebola nájdená!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Cieľová databáza `%s` nebola nájdená!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Chybná databáza:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Chybný názov tabuľky:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabuľka %1$s bola premenovaná na %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nepodarilo sa uložiť nastavenia tabuľky!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4234,7 +4241,7 @@ msgstr "" "Nepodarilo sa vyčistiť nastavenia tabuľky (pozri $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4244,19 +4251,19 @@ msgstr "" "Nepodarilo sa uložiť nastavenie \"%s\". Po obnovení stránky sa zmeny " "stratia. Skontrolujte, či sa zmenila štruktúra tabuľky." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Názov primárneho kľúča musí byť \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Nie je možné premenovať index na PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Časti indexu neboli definované!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10771,47 +10778,47 @@ msgstr "Formátuje text ako JSON so zvýrazňovaním syntaxe." msgid "Formats text as XML with syntax highlighting." msgstr "Formátuje text ako XML so zvýrazňovaním syntaxe." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Bol pridaný FOREIGN KEY vzťah." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Chyba: FOREIGN KEY vzťah nemohol byť pridaný!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Bol pridaný interný vzťah." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Chyba: Interný vzťah nemohol byť pridaný!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY vzťah bol odstránený." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Chyba: FOREIGN KEY vzťah nehomol byť odstránený!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Chyba: Vnútorný vzťah nemôže byť odstránený!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Interný vzťah bol odstránený." @@ -10929,18 +10936,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "bez popisu" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10949,14 +10956,14 @@ msgstr "" "%sVytvoriť%s databázu s názvom 'phpmyadmin' a nastaviť tam miesto uloženia " "phpMyAdmin konfigurácie." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "%sCreate%s miesto uloženia phpMyAdmin konfigurácie v aktuálnej databáze." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sVytvoriť%s chýbajúce tabuľky pre uloženie phpMyAdmin konfigurácie." @@ -11610,26 +11617,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nemáte potrebné oprávnenia na vytvorenie rutiny" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "V databáze %2$s nebola nájdená žiadneatrutina s menom %1$s" #: libraries/rte/rte_words.lib.php:43 @@ -11650,12 +11660,15 @@ msgid "trigger" msgstr "spúšťač" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nemáte potrebné oprávnenia na vytvorenie triggera" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "V databáze %2$s nebol nájdený žiadny trigger s menom %1$s" #: libraries/rte/rte_words.lib.php:57 @@ -11676,12 +11689,15 @@ msgid "event" msgstr "udalosť" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nemáte potrebné oprávnenia na vytvorenie udalosti" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "V databáze %2$s nebola nájdená žiadna udalosť s menom %1$s" #: libraries/rte/rte_words.lib.php:71 @@ -13442,7 +13458,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13546,7 +13562,7 @@ msgstr "Neočakávaný začiatok výrazu." msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13569,6 +13585,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Neočakávaný začiatok výrazu." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15076,35 +15098,42 @@ msgstr "Akcie" msgid "Constraint properties" msgstr "Nastavenia obmedzenia" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Pridať obmedzenie" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Interné vzťahy" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Zvoľte, ktoré polia zobraziť:" @@ -15113,11 +15142,11 @@ msgstr "Zvoľte, ktoré polia zobraziť:" msgid "Foreign key constraint %s has been dropped" msgstr "Obmedzenie cudzieho kľúča %s bolo zrušené" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Názov obmedzenia" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Pridať stĺpec" diff --git a/po/sl.po b/po/sl.po index dce910be0f..e543f0ed4c 100644 --- a/po/sl.po +++ b/po/sl.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-25 08:23+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Slovenian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2299,26 +2306,26 @@ msgstr "" "
- Ctrl+klik ali Alt+klik (Mac: Shift+možnost+klik), da stolpec " "odstranite iz stavka ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Kliknite za označitev/opustitev." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dvakrat kliknite za kopiranje imena stolpca." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "Za preklop vidnosti stolpcev
kliknite spustno puščico." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Pokaži vse" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2327,12 +2334,12 @@ msgstr "" "potrditvenimi polji, povezavami Uredi, Kopiraj in Izbriši, po shranjevanju " "morda ne bodo delovale." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2340,102 +2347,102 @@ msgstr "" "Si res želite ogledati vse vrstice? V primeru velikih tabel lahko to zruši " "brskalnik." -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "Izvirna dolžina" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "prekliči" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinjeno" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Uspešno" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Stanje uvoza" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Spustite datoteke tukaj" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Najprej izberite zbirko podatkov" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Pojdi na povezavo:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopiraj ime stolpca." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Ustvari geslo" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Ustvari" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Več" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Pokaži ploščo" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Skrij ploščo" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Prikaži skrite predmete v navigacijskem drevesu." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ne poveži z glavno ploščo" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2445,42 +2452,42 @@ msgstr "" "Najnovejša različica je %s, izdana %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", zadnja ustaljena različica:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "posodobljeno" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Ustvari pogled" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Pošlji poročilo o napaki" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Oddaj poročilo o napaki" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Spremeni nastavitve poročila" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Pokaži podrobnosti poročila" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2488,7 +2495,7 @@ msgstr "" "Vaš izvoz ni popoln zaradi nizke časovne omejitve izvršitve na stopnji PHP-" "ja!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2497,61 +2504,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Na strežniku smo zaznali nekatere napake!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Prosimo, poglejte na dno okna." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Prezri vse" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Ponovno izvedem poizvedbo?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Ali res želite izbrisati zaznamek?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s poizvedb izvedenih %s-krat v %s sekundah." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "podanih %s argumentov" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Prikaži argumente" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Skrij argumente" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Porabljen čas:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2566,347 +2573,347 @@ 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:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopiraj tabele v" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Dodaj predpono tabele" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Zamenjaj tabelo s predpono" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelo s predpono" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Prej" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Nasl" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Danes" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "marec" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "junij" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "julij" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "avgust" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "avg" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "nedelja" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "ponedeljek" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "torek" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "sreda" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "četrtek" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "petek" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "sobota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "tor" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "sre" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "čet" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "pet" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "sob" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ne" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "po" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "to" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "sr" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "če" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "pe" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "so" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "ted." #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "brez" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Ura" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuta" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekunda" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Polje je obvezno" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Prosimo, popravite to polje" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Prosimo, vnesite veljaven e-pošni naslov" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Prosimo, vnesite veljaven URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Prosimo, vnesite veljaven datum" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Prosimo, vnesite veljaven datum (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Prosimo, vnesite veljavno število" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Prosimo, vnesite veljavno številko kreditne kartice" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Prosimo, vnesite samo številke" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Prosimo, ponovno vnesite isto vrednost" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Prosimo, ne vnesete več kot {0} znakov" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Prosimo, vnesite vsaj {0} znakov" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "Prosimo, vnesite vrednost, dolgo od {0} do {1} znakov" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Prosimo, vnesite vrednost med {0} in {1}" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "Prosimo, vnesite vrednost, manjšo ali enako {0}" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "Prosimo, vnesite vrednost, večjo ali enako {0}" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Prosimo, vnesite veljaven datum ali čas" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Prosimo, vnesite veljaven heksadecimalen vnos" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3006,8 +3013,8 @@ msgstr "Ponovna poizvedba" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Zbirka podatkov" @@ -3809,7 +3816,7 @@ msgstr "Zavrgel sem indeks %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3867,8 +3874,8 @@ msgstr "Pogled" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4239,39 +4246,39 @@ msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s." msgid "Unknown table status:" msgstr "Neznano stanje tabele:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Izvorne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Ciljne zbirke podatkov `%s` nisem našel!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Neveljavna zbirka podatkov:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Neveljavno ime tabele:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Preimenovanje tabele %1$s v %2$s je spodletelo!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabelo %1$s sem preimenoval v %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4280,7 +4287,7 @@ msgstr "" "Čiščenje nastavitev uporabniškega vmesnika tabel je spodletelo (glej " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4291,19 +4298,19 @@ msgstr "" "spremembe po osvežitvi te strani ne bodo stalne. Prosimo, preverite, ali je " "bila struktura tabele spremenjena." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnega ključa mora biti \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Indeksa ni mogoče preimenovati v PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Ni definiranega dela indeksa!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10985,47 +10992,47 @@ msgstr "Oblikuje besedilo kot JSON z označevanjem skladnje." msgid "Formats text as XML with syntax highlighting." msgstr "Oblikuje besedilo kot XML z označevanjem skladnje." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Napaka: razmerje že obstaja." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Dodal sem razmerje FOREIGN KEY." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Napaka: Razmerja FOREIGN KEY nisem mogel dodati!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Napaka: Na stolpcih manjka indeks." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Napaka: Funkcionalnosti razmerij so onemogočene!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Dodal sem notranje razmerje." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Napaka: Notranjega razmerja nisem mogel dodati!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Odstranil sem razmerje FOREIGN KEY." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Napaka: Razmerja FOREIGN KEY nisem mogel odstraniti!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Napaka: Notranjega razmerja nisem mogel odstraniti!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Odstranil sem notranje razmerje." @@ -11145,11 +11152,11 @@ msgstr "" "Ponovno se prijavite v phpMyAdmin, da naložite posodobljeno konfiguracijsko " "datoteko." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "brez opisa" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11159,7 +11166,7 @@ msgstr "" "Greste lahko na zavihek 'Dejanja' v vsaki od zbirk podatkov in nastavite " "hrambo konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11168,7 +11175,7 @@ msgstr "" "%sUstvari%s zbirko podatkov 'phpmyadmin' in vanjo namesti hrambo " "konfiguracije phpMyAdmin." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." @@ -11176,7 +11183,7 @@ msgstr "" "%sCreate%s tabele hrambe konfiguracije phpMyAdmin in trenutni zbirki " "podatkov." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sUstvari%s manjkajoče tabele hrambe konfiguracije phpMyAdmin." @@ -11854,30 +11861,39 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nimate zadostnih pravic za ustvarjanje rutine" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "V zbirki podatkov %2$s nismo našli nobene rutine z imenom %1$s. Morda nimate " "zahtevanih privilegijev za urejanje rutine" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "V zbirki podatkov %2$s nismo našli nobene rutine z imenom %1$s. Morda nimate " "zahtevanih privilegijev za ogled/izvoz rutine" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Rutine imenovane %1$s ni mogoče najti v zbirki podatkov %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11898,12 +11914,15 @@ msgid "trigger" msgstr "sprožilec" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nimate zadostnih pravic za ustvarjanje sprožilca" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Sprožilca imenovanega %1$s ni mogoče najti v zbirki podatkov %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11924,12 +11943,15 @@ msgid "event" msgstr "dogodek" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nimate zadostnih pravic za ustvarjanje dogodka" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Dogodka imenovanega %1$s ni mogoče najti v zbirki podatkov %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13737,8 +13759,12 @@ msgid "Unexpected end of CASE expression" msgstr "Nepričakovan konec izraza CASE" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Pričakovali smo ime simbola! Rezervirane besede ne morete uporabiti kot ime " @@ -13840,7 +13866,7 @@ msgstr "Nepričakovan začetek stavka." msgid "Unrecognized statement type." msgstr "Neprepoznana vrsta stavka." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Začeli niste nobene transakcije." @@ -13861,6 +13887,12 @@ msgstr "To vrsto stavka smo prej razčlenili." msgid "Unrecognized keyword." msgstr "Nepričakovana ključna beseda." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Nepričakovan začetek stavka." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Pričakovali smo ime entitete." @@ -15343,36 +15375,43 @@ msgstr "Dejanja" msgid "Constraint properties" msgstr "Lastnosti omejitev" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Prikazani bodo samo stolpci z indeksom. Spodaj lahko opredelite indeks." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Omejitev tujih ključev" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Dodaj omejitev" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Notranja razmerja" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Notranja relacija" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "Notranja relacija ni nujna, ko obstaja ustrezna relacija FOREIGN KEY." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Izberite stolpec za prikaz:" @@ -15381,11 +15420,11 @@ msgstr "Izberite stolpec za prikaz:" msgid "Foreign key constraint %s has been dropped" msgstr "Zavrgel sem omejitev tujega ključa %s" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Ime omejitve" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Dodaj stolpec" diff --git a/po/sq.po b/po/sq.po index acb1133b80..c9250a59da 100644 --- a/po/sq.po +++ b/po/sq.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-06-30 22:53+0000\n" "Last-Translator: Arben Çokaj \n" "Language-Team: Albanian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2317,27 +2324,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Kliko për të shënjuar/mos-shënjuar." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Kliko dyfish për të kopjuar emrin e kolonës." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Shfaq të gjitha" -#: js/messages.php:581 +#: js/messages.php:587 msgid "" "This table does not contain a unique column. Features related to the grid " "edit, checkbox, Edit, Copy and Delete links may not work after saving." @@ -2346,13 +2353,13 @@ msgstr "" "korrigjim rrjetë, kuti kontrolli, Korrigjo, Kopjo dhe Fshij mund të mos " "punojnë pas ruajtjes." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2360,104 +2367,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Gjatësi origjinale" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "anulo" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Abortuar" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Sukses" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importo statusin" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Lësho filet këtu" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Zgjedh databazën së pari" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Shko tek lidhja:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopjo emrin e kolonës." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Gjenero fjalëkalimin" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Gjenero" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Më shumë" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Shfaq panelin" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Fsheh panelin" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Shfaq njësitë e fshehta të pemës së navigimit." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Lidh me panelin kryesor" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Moslidh nga paneli kryesor" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2467,27 +2474,27 @@ msgstr "" "aktualizimin. Versioni më i ri është %s, lëshuar më %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", versioni i fundit stabil:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktual" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Krijo pamje" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Dërgo raportin e gabimit" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2495,15 +2502,15 @@ msgstr "" "Një gabim fatal ka ndodhur në JavaScript. Dëshironi të dërgoni një raport " "gabimi?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Ndrysho rregullimet e raportit" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Shfaq detajet e raportit" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2511,7 +2518,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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2521,60 +2528,60 @@ msgstr "" "dorëzimin, disa nga fushat mund të injorohen, për shkak të konfigurimit PHP " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Disa gabime janë zbuluar në server!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Ju lutem shiko në fund të kësaj dritareje." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Injoro të gjitha" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Ekzekuto përsëri këtë pyetsor?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Doni me të vërtetë të fshini këtë faqeruajtës?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s pyetsorë të ekzekutuar %s herë në %s sekonda." -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argument(e) kaluan" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Shfaq argumentet" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Fsheh argumentet" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Koha që ka marrë:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2589,347 +2596,347 @@ msgstr "" "tillë, pastrimi i \"Offline Website Data\" mund të ndihmojë. Në Safari, " "probleme të tilla zakonisht shkaktohen nga \"Private Mode Browsing\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopjo tabelat në" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Shto prefiks tabele" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Zëvendëso tabelën me prefiksin" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopjo tabelën me prefiks" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Para" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Tjetër" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Sot" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Janar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Shkurt" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mars" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Prill" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "June" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Korrik" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Gusht" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Shtator" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Tetor" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Nëntor" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Dhjetor" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Shk" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Pri" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Kor" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Gus" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sht" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Tet" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nën" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dhj" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Dielë" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "E hënë" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "E martë" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "E mërkurë" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "E enjte" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "E premte" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "E shtunë" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Die" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Hën" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Mar" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Mër" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Enj" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pre" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sht" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Di" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Hë" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ma" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Më" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Enj" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Sh" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Wk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalendar-muaj-vit" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "asnjë" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Orë" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minutë" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Dytësor" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Kjo fushë kërkohet" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Ju lutem, fiksoje këtë fushë" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Ju lutem, fut një adresë të vlefshme email" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Ju lutem, fut një URL të vlefshme" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Ju lutem, fut një datë të vlefshme" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Ju lutem, fut një datë të vlefshme ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Ju lutem, fut një numër të vlefshëm" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Ju lutem, fut një numër të vlefshëm karte krediti" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Ju lutem, fut vetëm numra" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Ju lutem, fut të njëjtën vlerë përsëri" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Ju lutem, mos fut më shumë se {0} karaktere" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Ju lutem, fut së paku {0} karaktere" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Ju lutem, fut një vlerë ndërmjet {0} dhe {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Ju lutem, fut një datë ose kohë të vlefshme" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Ju lutem, fut një hyrje HEX të vlefshëm" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3028,8 +3035,8 @@ msgstr "Requery (kërkesë)" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Databaza" @@ -3827,7 +3834,7 @@ msgstr "Indeksi %s është fshirë." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3887,8 +3894,8 @@ msgstr "Shfaq" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4249,39 +4256,39 @@ msgstr "Ky MySQL server nuk e mbështet motorin e ruajtjes %s." msgid "Unknown table status:" msgstr "Status i panjohur tabele:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Databaza e burimit `%s` nuk gjendet!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Databaza e objektivit `%s` nuk u gjend!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Databazë e pavlefshme:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Emër tabele i pavlefshëm:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Dështoi në riemërimin e tabelës %1$s në %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabela %1$s është riemëruar në %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Nuk mund të ruajë tabelën e preferencave UI!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4290,7 +4297,7 @@ msgstr "" "Dështoi në pastrimin e tabelës së preferencave UI (shiko $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4301,19 +4308,19 @@ msgstr "" "qëndrueshme, pasi ju ta rifreskoni këtë faqe. Ju lutem, kontrollo nëse " "struktura e tabelës ka ndryshuar." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Emri i çelësit primar duhet të jetë \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "uk mund ta riemërojë indeksin tek PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Nuk janë përcaktuar pjesë të indeksit!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11058,47 +11065,47 @@ msgstr "Formaton tekstin si JSON me sintaksë të theksuar." msgid "Formats text as XML with syntax highlighting." msgstr "Formaton tekstin si XML me sintaksë të theksuar." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Gabim: relacioni ekziston ndërkohë." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Relacioni FOREIGN KEY (çelës i huaj) është shtuar." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Gabim: Relacioni i ÇELËSIT TË HUAJ nuk mund të shtohet!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Gabim: Mungon indeksi në kolonë(a)." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Gabim: Tiparet relacionale janë pasivizuar!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Relacioni i brendshëm u shtua." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Gabim: Relacioni i brendshëm nuk mund të shtohet!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Relacioni ÇELËSI I HUAJ është larguar." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Gabim: Relacioni i ÇELËSIT TË HUAJ nuk mund të hiqet!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Gabim: Relacioni i brendshëm nuk mund të hiqet!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Relacionet e brendshme janë hequr." @@ -11219,11 +11226,11 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Ri-hyj në phpMyAdmin, për të ngarkuar filin e aktualizuar të konfigurimit." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "nuk ka përshkrim" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11233,7 +11240,7 @@ msgstr "" "'phpmyadmin'. Ju mund të shkoni në tabelorin 'Veprimet' të çdo databaze, " "për të rregulluar ruajtjen e konfigurimit phpMyAdmin atje." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11242,13 +11249,13 @@ msgstr "" "%sKrijo%s një databazë me emrin 'phpmyadmin' dhe rregullo ruajtjen e " "konfigurimit të phpMyAdmin atje." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sKrijo%s ruajtjen e konfigurimit phpMyAdmin në databazën aktuale." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sKrijo%s mungon në tabelat e ruajtjes së konfigurimit phpMyAdmin." @@ -11923,26 +11930,29 @@ msgid "routine" msgstr "rutinë" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nuk keni privilegjet e nevojshme për të krijuar një rutinë" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Nuk ka rutinë me emrin %1$s të gjetur në databazën %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11963,12 +11973,15 @@ msgid "trigger" msgstr "shkrehës" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nuk keni privilegjet e nevojshme për të krijuar një shkrehës" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Nuk ka shkrehës me emrin %1$s të gjetur në databazën %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11989,12 +12002,15 @@ msgid "event" msgstr "ngjarje" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nuk keni privilegjet e nevojshme për të krijuar një ngjarje" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Nuk ka ngjarje me emrin %1$s që gjendet në databazë %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13817,7 +13833,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13918,7 +13934,7 @@ msgstr "Fillim i papritur i deklaratës." msgid "Unrecognized statement type." msgstr "Tip deklarate i panjohur." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Nuk ka filluar ndonjë transaksion më parë." @@ -13939,6 +13955,12 @@ msgstr "Ky tip i klauzolës është parsuar më parë." msgid "Unrecognized keyword." msgstr "Fjalë kyçe e panjohur." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Fillim i papritur i deklaratës." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Pritet emri i entitetit." @@ -15434,31 +15456,38 @@ msgstr "Veprime" msgid "Constraint properties" msgstr "Vetitë e detyrimit" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Vetëm kolonat me indeks do të shfaqet. Ju mund të përcaktoni një indeks më " "poshtë." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Kufizo çelësin e huaj" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Shto detyrim" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Relacion i brendshëm" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15466,7 +15495,7 @@ msgstr "" "Një relacion i brendshëm nuk është i nevojshëm kur ekziston një relacion " "korrespondues FOREIGN KEY (çelës i huaj)." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Zgjedh kolonën për të shfaqur:" @@ -15475,11 +15504,11 @@ msgstr "Zgjedh kolonën për të shfaqur:" msgid "Foreign key constraint %s has been dropped" msgstr "Detyrimi i çelësit të huaj %s është hedhur" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Emri i detyrimit" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Shto kolonë" diff --git a/po/sr.po b/po/sr.po index 73d6babb8f..b4e27669a5 100644 --- a/po/sr.po +++ b/po/sr.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:25+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Имена колона" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Прикажи све" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Оригинална позиција" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Откажи" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Прекинуто" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Увоз датотека" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Изабери табеле" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Штампај" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "База не постоји" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Имена колона" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Направи лозинку" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Направи" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Пон" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Прикажи све" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Add new field" msgid "Hide panel" msgstr "Додај ново поље" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Прикажи мрежу" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy msgid "Link with main panel" msgstr "Опције за извоз базе" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Опције за извоз базе" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2681,123 +2688,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy msgid ", latest stable version:" msgstr "Направи релацију" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "База не постоји" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Направи релацију" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "ИД сервера" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "ИД сервера" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "Опште особине релација" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Прикажи отворене табеле" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Игнориши" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Прикажи поново овај упит" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Да ли стварно хоћете да " -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментари табеле" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL упит" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2813,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копирај базу у" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "Додај ново поље" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "Замени податке у табели са подацима из датотеке" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Претходна" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2845,96 +2852,96 @@ msgid "Next" msgstr "Следећи" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Укупно" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Бинарни" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "мар" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "апр" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "мај" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "јун" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "јул" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "авг" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "окт" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "јан" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "феб" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "мар" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "апр" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2942,78 +2949,78 @@ msgid "May" msgstr "мај" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "јун" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "јул" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "авг" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "сеп" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "окт" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "нов" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "дец" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Нед" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Пон" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Уто" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Пет" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3021,223 +3028,223 @@ msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Уто" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Сре" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Чет" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Пет" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Суб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Нед" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Пон" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Уто" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Сре" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Чет" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Пет" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Суб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "нема" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "се користи" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "у секунди" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Користи текст поље" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d није исправан број реда." -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d није исправан број реда." -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d није исправан број реда." -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d није исправан број реда." -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d није исправан број реда." -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d није исправан број реда." -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d није исправан број реда." -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d није исправан број реда." -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d није исправан број реда." -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d није исправан број реда." -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d није исправан број реда." -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d није исправан број реда." -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d није исправан број реда." -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3334,8 +3341,8 @@ msgstr "у упиту" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "База података" @@ -4268,7 +4275,7 @@ msgstr "Кључ %s је обрисан." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4324,8 +4331,8 @@ msgstr "Поглед" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Табела" @@ -4720,55 +4727,55 @@ msgstr "Овај MySQL сервер не подржава %s погон скла msgid "Unknown table status:" msgstr "Прикажи статус подређених сервера" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Претраживање базе" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Није пронађена тема %s!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Неисправна база података" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Неисправан назив табеле" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Грешка при преименовању табеле %1$s у %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Табели %s промењено име у %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4776,19 +4783,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Име примарног кључа мора да буде \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Не могу да променим кључ у PRIMARY (примарни) !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Делови кључа нису дефинисани!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11674,63 +11681,63 @@ msgstr "Форматира текст као SQL упит са обележав msgid "Formats text as XML with syntax highlighting." msgstr "Форматира текст као SQL упит са обележавањем синтаксе." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Грешка: релација већ постоји." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Измене су сачуване" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Додата интерна релација" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Измене су сачуване" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Грешка: релација није додата." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11864,31 +11871,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "нема описа" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12617,27 +12624,27 @@ msgstr "Рутине" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Није Вам дозвољено да будете овде!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Табеле нису пронађене у бази." #: libraries/rte/rte_words.lib.php:43 @@ -12664,13 +12671,13 @@ msgstr "Окидачи" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Није Вам дозвољено да будете овде!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Табеле нису пронађене у бази." #: libraries/rte/rte_words.lib.php:57 @@ -12697,13 +12704,13 @@ msgstr "Догађаји" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Није Вам дозвољено да будете овде!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Табеле нису пронађене у бази." #: libraries/rte/rte_words.lib.php:71 @@ -14588,7 +14595,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14704,7 +14711,7 @@ msgstr "На почетку табеле" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14725,6 +14732,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "На почетку табеле" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16412,39 +16425,46 @@ msgstr "Акција" msgid "Constraint properties" msgstr "Ограничења за табеле" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додај ограничења" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Унутрашње релације" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Унутрашње релације" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16456,13 +16476,13 @@ msgstr "Изабери поља за приказ" msgid "Foreign key constraint %s has been dropped" msgstr "Искључи провере страних кључева" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ограничења за табеле" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/sr@latin.po b/po/sr@latin.po index 3a187bca69..f489e08cfe 100644 --- a/po/sr@latin.po +++ b/po/sr@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:24+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Serbian (latin) - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "Kliknite da postavite/skinete oznaku" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Copy column name" msgid "Double-click to copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Prikaži sve" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2522,60 +2529,60 @@ msgstr "" "izmene u gridu, checkbox, Edit, Copy i Delete linkovi može da se desi da ne " "rade nakon snimanja." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Originalna pozicija" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Otkaži" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Prekinuto" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Podrazumevane opcije uvoza" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Izaberi tabele" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2584,7 +2591,7 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:614 +#: js/messages.php:620 #, fuzzy #| msgid "" #| "You can also edit most columns
by clicking directly on their content." @@ -2593,72 +2600,72 @@ msgstr "" "Možete izmeniti većinu kolona
tako što kliknete direktno na njen " "sadržaj." -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "Idi na link" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "Kopiraj ime kolone" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Generiši lozinku" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generiši" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Još" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Prikaži sve" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide indexes" msgid "Hide panel" msgstr "Sakrij indekse" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Prikaži logo u levom okviru" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Prilagođavanje glavnog okvira" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2668,124 +2675,124 @@ msgstr "" "nadogradnji. Najnovije verzija je %s, objavljena %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", poslednja stabilna verzija:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "Ažurno" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Napravi pogled" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Port na serveru" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Port na serveru" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "Izmeni podešavanja" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Prikaži otvorene tabele" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Ignoriši" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Prikaži ponovo ovaj upit" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Executed queries" msgid "%s queries executed %s times in %s seconds." msgstr "Izvršeni upiti" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Komentari tabele" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Sakrij tezultate pretrage" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2794,383 +2801,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Kopiraj bazu u" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table prefix" msgid "Add table prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Zameni prefix tabele" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiraj tabelu sa prefiksom" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Prethodni" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Sledeći" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Danas" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Januar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Februar" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mart" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "April" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Jun" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Jul" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Avgust" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Septembar" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Oktobar" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Novembar" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Decembar" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Nedelja" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Ponedeljak" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Utorak" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Sreda" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Četvrtak" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Petak" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Subota" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Ned" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Pon" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Uto" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Sre" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Čet" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Pet" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Sub" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Ne" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Po" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ut" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Sr" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Če" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Su" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Vk" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalendar-mesec-godina" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "nema" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Čas" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minut" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekund" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Koristi tekst polje" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Nije ispravan broj porta" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Nije ispravan broj porta" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Nije ispravan broj porta" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Nije ispravan broj porta" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Nije ispravan broj porta" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Nije ispravan broj porta" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Nije ispravan broj porta" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Nije ispravan broj porta" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Nije ispravan broj porta" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Nije ispravan broj porta" -#: js/messages.php:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Nije ispravan broj porta" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Nije ispravan broj porta" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3269,8 +3276,8 @@ msgstr "podupit" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Baza podataka" @@ -4188,7 +4195,7 @@ msgstr "Indeks %s je obrisan." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4246,8 +4253,8 @@ msgstr "Pogled" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabela" @@ -4640,48 +4647,48 @@ msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja." msgid "Unknown table status:" msgstr "Nepoznat status tabele: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Pretraživanje baze" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "Nije pronađena tema %s!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Neispravna baza podataka" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Neispravan naziv tabele" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "Greška pri preimenovanju tabele %1$s u %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "Tabeli %s promenjeno ime u %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "Nije bilo moguće saćuvati podešavanja korisničkog interfejsa tabele" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4690,7 +4697,7 @@ msgstr "" "Neuspelo brisanje podešavanja korisničkog interfejsa tabele (pogledajte " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4701,19 +4708,19 @@ msgstr "" "neće biti trajne nakon osveženja ove strane. Molimo vas da proverite da li " "je struktura tabele izmenjena." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ime primarnog ključa mora da bude \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Ne mogu da promenim ključ u PRIMARY (primarni) !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Delovi ključa nisu definisani!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11673,63 +11680,63 @@ msgstr "Formatira tekst kao SQL upit sa obeležavanjem sintakse." msgid "Formats text as XML with syntax highlighting." msgstr "Formatira tekst kao SQL upit sa obeležavanjem sintakse." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Greška: relacija već postoji." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been added." msgstr "Konfiguracija je sačuvana" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Dodata interna relacija" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Configuration has been saved." msgid "FOREIGN KEY relation has been removed." msgstr "Konfiguracija je sačuvana" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Greška: relacija nije dodata." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11865,18 +11872,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "nema opisa" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11884,14 +11891,14 @@ msgid "" "configuration storage there." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Nedostaju phpMyAdmin skladišne tabele" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12569,26 +12576,29 @@ msgid "routine" msgstr "rutina" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Nemate neophodna prva pristupa da bi ste kreirali rutinu" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Rutina sa imenom %1$s nije pronađena u bazi %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -12609,12 +12619,15 @@ msgid "trigger" msgstr "okidač" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Nemate neophodna prava pristupa da bi ste kreirali okidač" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Okidač sa imenom %1$s nije pronađen u bazi %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12635,12 +12648,15 @@ msgid "event" msgstr "događaj" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Nemate neophodna prava pristupa da bi ste kreirali događaj" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Događaj sa imenom %1$s nije pronađen u bazi %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -14489,7 +14505,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14609,7 +14625,7 @@ msgstr "Na početku tabele" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14630,6 +14646,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Na početku tabele" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16257,37 +16279,44 @@ msgstr "Akcija" msgid "Constraint properties" msgstr "Ograničenja za tabele" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Dodaj ograničenja" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Unutrašnje relacije" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Unutrašnja relacija" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16299,13 +16328,13 @@ msgstr "Izaberi kolonu za prikaz" msgid "Foreign key constraint %s has been dropped" msgstr "Ograničenje stranog ključa" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Ograničenja za tabele" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/sv.po b/po/sv.po index 7171e86e3d..a50e451f15 100644 --- a/po/sv.po +++ b/po/sv.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-18 20:28+0000\n" "Last-Translator: Erik Sundin \n" "Language-Team: Swedish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2285,26 +2292,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Klicka för att markera/avmarkera." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Dubbelklicka för att kopiera kolumnnamn." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Visa alla" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2313,113 +2320,113 @@ msgstr "" "nätet redigera, kryssruta, redigera, kopiera och radera-länkar kanske inte " "fungerar när du har sparat." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Ursprunglig längd" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "Avbryt" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Avbrutna" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Lyckades" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Importstatus" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Släpp filer här" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Markera databasen först" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Gå till länk:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Kopiera kolumnnamn." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Skapa lösenord" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generera" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Mera" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Visa panel" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Dölj Panel" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Visa dolda navigationsträdsobjekt." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Länka med huvudpanelen" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Avlänka från huvudpanelen" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2429,49 +2436,49 @@ msgstr "" "senaste versionen är %s, publicerad den %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", senaste stabila version:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "aktuell" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Skapa vy" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Skicka felrapport" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Skicka felrapport" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Ändra rapportinställningar" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Visa rapportdetaljer" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2481,58 +2488,58 @@ msgstr "" "kan några av fälten ignoreras på grund av max_input_vars-inställningen för " "PHP." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Fel har påträffats på servern!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Titta längst ned i fönstret." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ignorera alla" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Enligt dina inställningar, ha tålamod." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Köra den här frågan igen?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Vill du verkligen ta bort detta bokmärke?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "Vissa fel uppstod när SQL inhämtade felinformation." -#: js/messages.php:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s argument utförda" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Visa argument" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Dölja argument" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Tidsåtgång:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2547,347 +2554,347 @@ msgstr "" "webbinnehåll och användardata\" kan hjälpa. I Safari orsakas dylika problem " "oftast av \"Privat läge\"." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Kopiera tabeller till" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Lägg till tabellprefix" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Ersätt tabell med prefix" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Kopiera tabell med prefix" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Föregående" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Nästa" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Idag" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januari" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februari" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "mars" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "maj" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "augusti" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mars" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "maj" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Söndag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Måndag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Tisdag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Onsdag" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Torsdag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Fredag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Lördag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Sön" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Mån" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Tis" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Ons" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Tors" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Fre" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Lör" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Sö" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Må" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Ti" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "On" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "To" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Fr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Lö" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Vecka" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "kalender-månad-år" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Timmar" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Minuter" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Sekunder" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Detta fältet är obligatoriskt" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Var vänlig och rätta detta fält" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Ange en giltig e-postadress" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Skriv in en giltig webbadress (URL)" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Ange ett giltigt datum" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Ange ett giltigt datum (ISO)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Var vänlig ange ett giltigt nummer" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Skriv in ett giltigt kreditkortsnummer" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Ange endast siffror" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Skriv in samma värde igen" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Ange inte mer än {0} tecken" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Ange minst {0} tecken" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Ange ett värde mellan {0} och {1}" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Ange ett giltigt datum eller tid" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Skriv in en giltig Hexadecimalt värde" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2984,8 +2991,8 @@ msgstr "Ny fråga" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Databas" @@ -3780,7 +3787,7 @@ msgstr "Index %s har tagits bort." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3838,8 +3845,8 @@ msgstr "Vy" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tabell" @@ -4201,39 +4208,39 @@ msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s." msgid "Unknown table status:" msgstr "Okänd tabellstatus:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Källdatabas `%s` hittades inte!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Måldatabas `%s` hittades inte!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Ogiltig databas:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Ogiltigt tabellnamn:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Kunde inte byta namn på tabell %1$s till %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Tabell %1$s har döpts om till %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Kunde inte spara gränssnittsinställningarna för tabellen!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4242,7 +4249,7 @@ msgstr "" "Misslyckades med att rensa gränssnittsinställningar för tabell (se " "$cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4253,19 +4260,19 @@ msgstr "" "beständiga efter att du uppdaterar denna sida. Kontrollera om tabellens " "struktur har förändrats." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Primärnyckelns namn måste vara \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Kan inte byta namn på index till \"PRIMARY\"!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Inga delar av index är definierade!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Fel vid skapande av främmande nyckel för %1$s (kontrollera datatyper)" @@ -10933,47 +10940,47 @@ msgstr "Formaterar text som en JSON-fråga med syntaxmarkering." msgid "Formats text as XML with syntax highlighting." msgstr "Formaterar text som en XML-fråga med syntaxmarkering." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Fel: Relation finns redan." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY-relation har lagts till." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Fel: Extern nyckel-relation kunde inte läggas till!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Fel: Saknade index på kolumn/erna." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Fel: Relationella funktioner är inaktiverade!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Intern relation har lagts till." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Fel: Interna relationen kunde inte läggas till!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "EXTERN nyckel-relation har tagits bort." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Fel: Extern nyckel-relation kunde inte tas bort!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Fel: Intern relationen kunde inte läggas till!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Inre relation har tagits bort." @@ -11094,18 +11101,18 @@ msgstr "" "Logga in igen till phpMyAdmin för att ladda den uppdaterade " "konfigurationsfilen." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ingen beskrivning" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11114,13 +11121,13 @@ msgstr "" "%sCreate%s en databas heter \"phpmyadmin\" och installera phpMyAdmin " "konfiguration lagring där." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "%sCreate%s phpMyAdmin konfiguration lagring i den aktuella databasen." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%sCreate%s saknade phpMyAdmin konfiguration lagringstabeller." @@ -11791,26 +11798,29 @@ msgid "routine" msgstr "Rutin" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Du har inte den nödvändiga behörigheten för att skapa en rutin" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Ingen rutin med namnet %1$s finns i databasen %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11831,12 +11841,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Du har inte den nödvändiga behörigheten att skapa en trigger" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Ingen trigger med namnet %1$s finns i databasen %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11857,12 +11870,15 @@ msgid "event" msgstr "händelse" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Du har inte tillräcklig behörighet för att skapa en händelse" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Ingen händelse med namnet %1$s hittades i databasen %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13667,7 +13683,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13770,7 +13786,7 @@ msgstr "Oväntad början av satsen." msgid "Unrecognized statement type." msgstr "Okänd uttryckstyp." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Ingen transaktion startades tidigare." @@ -13791,6 +13807,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "Okänt nyckelord." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Oväntad början av satsen." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Namnet på entiteten förväntades." @@ -15318,29 +15340,36 @@ msgstr "Åtgärder" msgid "Constraint properties" msgstr "Restriktionersvillkor" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "Endast kolumner med index visas. Du kan definiera ett index nedan." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Begränsning av främmande nyckel" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Lägg till villkor" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Interna relationer" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Intern relation" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15348,7 +15377,7 @@ msgstr "" "En intern relation är inte nödvändig när en motsvarande FOREIGN KEY relation " "finns." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Välj kolumn att visa:" @@ -15357,11 +15386,11 @@ msgstr "Välj kolumn att visa:" msgid "Foreign key constraint %s has been dropped" msgstr "Sekundärnyckelbegränsning %s har tagits bort" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Begränsningsnamn" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Lägg till kolumn" diff --git a/po/ta.po b/po/ta.po index c6bdc905fc..2ec73ade27 100644 --- a/po/ta.po +++ b/po/ta.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-10 19:29+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tamil - ORDER BY உறுப்புரையிலிருந்து நீக்க Ctrl+சொடுக்கவும்" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "சேர்க்க/நீக்க சொடுக்கவும்." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்க இருமுறை சொடுக்குக." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "நிரல்வரிசையின் காட்சிப்பண்பை
மாற்ற கீழிறங்கு குறியை சொடுக்குக." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "அனைத்தையும் காட்டு" -#: js/messages.php:581 +#: js/messages.php:587 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,115 +2389,115 @@ msgstr "" "இவ்வட்டவணையில் தனித்தநிரல்வரிசை இல்லை.சேமித்த பின்னர் நெய்யரியில் தொகுத்தல், தேர்வுபெட்டி, " "தொகுத்தல், படியெடுத்தல், மற்றும் நீக்கல் வசதிகள் செயல்படாமல் போகலாம்." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "சரியான அறுபதின்ம சரத்தை உள்ளிடவும்.௦-9,A-F ஆகியவை ஏற்ற உள்ளீடுகள்." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "மெய் சரம்" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "விலக்கு" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "கைவிடப்பட்டது" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "வெற்றி" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "தரவிறக்க நிலை" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "கோப்புகளை இங்கு விடுக" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "ஒரு தரவுத்தளத்தை முதலில் தேர்வுசெய்க" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "அச்சிடுக" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை இருமுறை-சொடுக்குக." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "நீங்கள் பெரும்பாலான மதிப்புகளை தொகுக்க
அவற்றை சொடுக்குக." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "இணைப்புக்கு செல்:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "நிரல்வரிசை பெயரை படியெடுக்கவும்." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "நிரல்வரிசை பெயரை இடைபிடிப்புக்கு படியெடுக்க வலமுறை-சொடுக்குக." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "கடவுச்சொல்லை இயற்று" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "இயற்று" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "மேலும்" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "பலகத்தை காட்டு" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "பலகத்தை மறை" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "மறைத்துள்ள வழிசெலுத்தல் படிமுறை உருப்படிகளை காண்பி." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "முதன்மை பலகத்துடன் இணைக்க" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "முதன்மை பலகத்திலிருந்து பிரிக்க" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "நீங்கள் கோரிய பக்கம் வரலாற்றில் இல்லை, அது செல்லுபடி இல்லாமல் போயிருக்கலாம்." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2500,57 +2507,57 @@ msgstr "" "கருத்தில் கொள்ளவும்.மிக அண்மைய பதிப்பு %s,%s அன்று வெளியிடப்பட்டது." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", புதிய நிலைப்பதிப்பு:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "இன்றுவரை" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "விவரபார்வையை உருவாக்குக" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send Error Report" msgid "Send error report" msgstr "பிழை அறிக்கை அனுப்புக" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "பிழை அறிக்கை அளிக்க" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "ஒரு ஆபத்தான ஜாவா ஸ்க்ரிப்ட் பிழை நிகழ்ந்துள்ளது. பிழை அறிக்கை அளிக்க விரும்புகிறீர்களா?" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "அறிக்கை அமைப்புக்களை மாற்றுக" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "அறிவிக்கை விவரங்களை காட்டுக" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" "PHPயின் நிலையில் குறைந்த செயலாக்கநேர வரம்பின் விளைவாக உங்கள் தரவேற்றம் முடிவுறவில்லை!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2559,62 +2566,62 @@ msgstr "" "எச்சரிக்கை: இப்பக்கத்திலுள்ள ஒரு படிவத்தில் %dஐ விட அதிகமான கலங்கள் உள்ளன.PHPயின் " "max_input_vars அமைப்பாக்கத்தின் விளைவாக அனுப்பும்போது சில கலங்கள் விடப்படலாம்." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "சேவையகத்தில் சில பிழைகள் கண்டறியப்பட்டுள்ளன!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "இச்சாளரத்தின் கீழ்பக்கம் பார்க்கவும்." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "அனைத்தையும் புறக்கணி" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "உங்கள் அமைவுகளின்படி,தற்பொழுது அவை அனுப்பபட்டுகொண்டிருக்கிறன.காத்திருக்கவும்." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "இந்த வினவலை மீண்டும் செயல்படுத்த வேண்டுமா?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "உங்களுக்கு உண்மையிலேயே புத்தகக்குறியை நீக்க வேண்டுமா?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "அட்டவணைக் கருத்துரைகள்" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "தேடல் முடிவுகளை மறை" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2623,383 +2630,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "தரவுதளத்தை இப்படி படியெடுக்க" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "அட்டவணையின் முன்னொட்டு சேர்க்க:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "அட்டவணை முன்னொட்டை பதிலிடு" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "பின்" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "அடுத்த" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "இன்று" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "ஜனவரி" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "பெப்ரவரி" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "மார்ச்" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "ஏப்ரல்" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "மே" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "ஜூன்" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "ஜூலை" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ஆகஸ்ட்" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "செப்டம்பர்" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "அக்டோபர்" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "நவம்பர்" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "டிசம்பர்" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "தை" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "மாசி" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "பங்குனி" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "சித்திரை" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "மே" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "ஆணி" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ஆடி" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ஆவணி" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "புரட்டாதி" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ஐப்பசி" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "காத்திகை" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "மார்கழி" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "ஞாயிறு" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "திங்கள்" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "செவ்வாய்" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "புதன்" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "வியாழன்" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "வெள்ளி" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "சனி" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "ஞாயிறு" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "திங்" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "செவ்" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "புத" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "வியா" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "வெள்" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "சனி" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ஞாயி" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "திங்" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "செவ்" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "புத" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "வியா" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "வெள்" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "சனி" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "கிழமை" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "நாள்காட்டி-மாதம்-ஆண்டு" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "எதுவுமில்லை" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "மணித்தியாலம்" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "நிமிடம்" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "வினாடிகள்" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field:" msgid "Please fix this field" msgstr "உரைபுலத்தின் மூலமாக:" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான நீளத்தை இடுக!" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "தயவுசெய்து ஒரு சரியான பக்கத்தின் பெயரை இடுக" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "தயவுசெய்து ஒரு சரியான எண்ணை இடுக!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3098,8 +3105,8 @@ msgstr "மீள்வினவல்" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "தரவுத்தளம்" @@ -3920,7 +3927,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3976,8 +3983,8 @@ msgstr "நோக்கு" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "அட்டவணை" @@ -4339,46 +4346,46 @@ msgstr "" msgid "Unknown table status:" msgstr "தெரியாத அட்டவணை நிலை:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "செல்லாத தரவுத்தளம்:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "செல்லாத அட்டவணைப் பெயர்:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "அட்டவணை %1$sஐ %2$s என மறுபெயரிடுதல் தோல்வியடைந்தது!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s அட்டவணையானது %2$s ஆக பெயர் மாற்றப்பட்டது." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4386,19 +4393,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "தொகுப்புக்குறிகாட்டியை முதனிலையாக பெயர்மாற்றம் செய்யமுடியவில்லை!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10689,53 +10696,53 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Internal relation has been added." msgid "Error: Internal relation could not be added!" msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Internal relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Internal relation has been added." msgid "Error: Internal relation could not be removed!" msgstr "உள்ளமை உறவுமுறை சேர்க்கப்பட்டது." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -10857,31 +10864,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11527,27 +11534,28 @@ msgid "routine" msgstr "%s களத்தை சேர்க்க->செயல்முறை" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No routine with name %1$s found in database %2$s." +msgstr "அட்டவணைகள் எதுவும் இத்தரவுத்தளத்தில் காணப்படவில்லை." #: libraries/rte/rte_words.lib.php:43 msgid "There are no routines to display." @@ -11567,13 +11575,14 @@ msgid "trigger" msgstr "புதிய பயனாளரை சேர்க்க->செயல்தூண்டி" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No trigger with name %1$s found in database %2$s." +msgstr "அட்டவணைகள் எதுவும் இத்தரவுத்தளத்தில் காணப்படவில்லை." #: libraries/rte/rte_words.lib.php:57 msgid "There are no triggers to display." @@ -11593,13 +11602,14 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" -msgstr "" +#, fuzzy, php-format +#| msgid "No tables found in database." +msgid "No event with name %1$s found in database %2$s." +msgstr "அட்டவணைகள் எதுவும் இத்தரவுத்தளத்தில் காணப்படவில்லை." #: libraries/rte/rte_words.lib.php:71 msgid "There are no events to display." @@ -13257,7 +13267,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13372,7 +13382,7 @@ msgstr "திறந்தநிலை அட்டவணைகளின் வ msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13395,6 +13405,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Rate of table open" +msgid "Unexpected ordering of clauses." +msgstr "திறந்தநிலை அட்டவணைகளின் விழுக்காடு" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14911,35 +14927,42 @@ msgstr "செயல்கள்" msgid "Constraint properties" msgstr "கட்டுப்பாட்டின் பண்புகள்" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+கட்டுப்பாட்டை சேர்க்க" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "உள்ளமை உறவுமுறைகள்" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "காட்சிப்படுத்த நிரல்வரிசையை தேர்ந்தெடுக்கவும்:" @@ -14948,11 +14971,11 @@ msgstr "காட்சிப்படுத்த நிரல்வரிச msgid "Foreign key constraint %s has been dropped" msgstr "அயல் குறியெண் வரைமுறை %s கைவிடப்பட்டது" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "கட்டுப்பாட்டின் பெயர்" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ நெடுவரிசையை சேர்க்க" diff --git a/po/te.po b/po/te.po index 7b1f032081..2f24a44a41 100644 --- a/po/te.po +++ b/po/te.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Telugu - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "అన్నీ చూపించు" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "అసలు స్థానం" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "రద్దుచేయి" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "దిగుమతి" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "ముద్రించు" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "వ్యాఖ్యలు" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "మరిన్ని" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "అన్నీ చూపించు" # మొదటి అనువాదము -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide/Show all" msgid "Hide panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show" msgid "Show hidden navigation tree items." msgstr "చూపించు" # మొదటి అనువాదము -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Hide/Show all" @@ -2556,17 +2563,17 @@ msgid "Link with main panel" msgstr "అన్నింటిని చూపుము/దాచుము" # మొదటి అనువాదము -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Hide/Show all" msgid "Unlink from main panel" msgstr "అన్నింటిని చూపుము/దాచుము" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2574,114 +2581,114 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" # మొదటి అనువాదము -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create" msgid "Create view" msgstr "సృష్టించు" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Basic settings" msgid "Change report settings" msgstr "ప్రాధమిక అమరికలు" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show more actions" msgid "Show report details" msgstr "మరిన్ని చర్యలను చూపించు" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 +2697,30 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Display table filter" msgid "Add table prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Display table filter" msgid "Replace table with prefix" msgstr "పట్టిక వ్యాఖ్యలు" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" # మొదటి అనువాదము -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" @@ -2721,7 +2728,7 @@ msgid "Prev" msgstr "గత" # మొదటి అనువాదము -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2729,149 +2736,149 @@ msgid "Next" msgstr "తదుపరి" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "ఈరోజు" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "జనవరి" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "ఫిబ్రవరి" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "మార్చి" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "ఏప్రిల్" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "మే" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "జూన్" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "జూలై" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ఆగస్ట్" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "సెప్టెంబర్" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "అక్టోబర్" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "నవంబర్" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "డిసెంబర్" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "జన" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "ఫిబ్ర" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "మార్చి" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "ఏప్రి" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "మే" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "జూన్" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "జూలై" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ఆగ" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "సెప్టె" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "అక్టో" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "నవం" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "డిసెం" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "ఆదివారం" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "సోమవారం" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "మంగళవారం" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "బుధవారం" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "గురువారం" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "శుక్రవారం" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "శనివారం" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2879,181 +2886,181 @@ msgid "Sun" msgstr "ఆది" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "సోమ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "మంగళ" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "బుధ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "గురు" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "శుక్ర" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "శని" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "ఆ" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "సో" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "మం" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "బు" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "గు" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "శు" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "శ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "వారం" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "ఏమీలేదు" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "గంట" # మొదటి అనువాదము -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "నిమిషం" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "క్షణం" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" # మొదటి అనువాదము -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Add new field" msgid "Please fix this field" msgstr "క్రొత్త ఫీల్డ్ చేర్చు" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Select All" msgid "Please enter a valid date" msgstr "అన్నీ ఎంచుకో" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3148,8 +3155,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "డేటాబేస్" @@ -4062,7 +4069,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4119,8 +4126,8 @@ msgstr "చూపుము" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "పట్టిక" @@ -4521,55 +4528,55 @@ msgstr "" msgid "Unknown table status:" msgstr "అన్నీ చూపించు" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Rename database to" msgid "Invalid database:" msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Use Tables" msgid "Invalid table name:" msgstr "పట్టికల్ని వాడు" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "More settings" msgid "Failed to rename table %1$s to %2$s!" msgstr "మరిన్ని అమరికలు" # మొదటి అనువాదము -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Page has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "పుటను సృష్టించడమైనది" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Server configuration" msgid "Could not save table UI preferences!" msgstr "సేవకి స్వరూపణం" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4577,19 +4584,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11145,61 +11152,61 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Server configuration" msgid "FOREIGN KEY relation has been added." msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Server configuration" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been added." msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Internal relations" msgid "Error: Internal relation could not be added!" msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Server configuration" msgid "FOREIGN KEY relation has been removed." msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Server configuration" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "సేవకి స్వరూపణం" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Internal relations" msgid "Error: Internal relation could not be removed!" msgstr "అంతర్గత సంబంధాలు" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relations" msgid "Internal relation has been removed." @@ -11327,31 +11334,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "వివరణ లేదు" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12054,27 +12061,27 @@ msgid "routine" msgstr "స్పందనలకు చేర్చు" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" #: libraries/rte/rte_words.lib.php:43 @@ -12099,13 +12106,13 @@ msgid "trigger" msgstr "క్రొత్త వాడుకరిని చేర్చు" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" #: libraries/rte/rte_words.lib.php:57 @@ -12128,13 +12135,13 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు" #: libraries/rte/rte_words.lib.php:71 @@ -13854,7 +13861,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13972,7 +13979,7 @@ msgstr "పట్టికను సృష్టించు" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13993,6 +14000,14 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +# మొదటి అనువాదము +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgctxt "short form" +#| msgid "Create table" +msgid "Unexpected ordering of clauses." +msgstr "పట్టికను సృష్టించు" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15616,37 +15631,44 @@ msgstr "చర్య" msgid "Constraint properties" msgstr "వ్యాఖ్యలు" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add a New User" msgid "+ Add constraint" msgstr "కొత్త వాడుకరిని చేర్చు" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "అంతర్గత సంబంధాలు" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "అంతర్గత సంబంధం" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "data" msgid "Choose column to display:" @@ -15658,14 +15680,14 @@ msgstr "భోగట్టా" msgid "Foreign key constraint %s has been dropped" msgstr "%s డేటాబేస్ తుడిచివేయడమైనది." -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Comments" msgid "Constraint name" msgstr "వ్యాఖ్యలు" # మొదటి అనువాదము -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add into comments" msgid "+ Add column" diff --git a/po/th.po b/po/th.po index 559226b9f7..aad6281749 100644 --- a/po/th.po +++ b/po/th.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-07-07 16:11+0000\n" "Last-Translator: Phongphan A Bunlom \n" "Language-Team: Thai - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 #, fuzzy #| msgid "Click to mark/unmark" msgid "Click to mark/unmark." msgstr "กดเพื่อมาร์ก หรือยกเลิกการมาร์ก" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Double-click to copy column name" msgid "Double-click to copy column name." msgstr "ดับเบิลคลิกเพื่อคัดลอกชื่อคอลัมน์" -#: js/messages.php:577 +#: js/messages.php:583 #, 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "แสดงทั้งหมด" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "ตำแหน่งเริ่มแรก" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "ยกเลิก" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "ยกเลิก" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "นำเข้าไฟล์" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "เลือกตาราง" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "พิมพ์" -#: js/messages.php:609 +#: js/messages.php:615 #, 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:614 +#: js/messages.php:620 #, 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:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to link" msgid "Go to link:" msgstr "ไปที่หน้า" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Copy column name" msgid "Copy column name." msgstr "คัดลอกชื่อคอลัมน์" -#: js/messages.php:623 +#: js/messages.php:629 #, fuzzy msgid "Right-click the column name to copy it to your clipboard." msgstr "คลิกขวาที่ชื่อคอลัมน์เพื่อคัดลอกข้อมูล" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "สร้างรหัสผ่าน" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "สร้าง" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "เพิ่มเติม" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "แสดงแผง" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "ซ่อนแผง" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Reload navigation frame" msgid "Show hidden navigation tree items." msgstr "โหลดกรอบนำทางใหม่" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Use text field" msgid "Unlink from main panel" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "ไม่พบหน้าดังกล่าวในประวัติการเรียกดู อาจเป็นเพราะหน้านั้นไม่มีหรือหมดอายุที่จะแสดงได้แล้ว" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2611,122 +2618,122 @@ msgid "" msgstr "phpMyAdmin มีรุ่นใหม่แล้ว กรุณาพิจารณาอัพเกรดเป็นรุ่นใหม่ %s โดยออกเมื่อ %s" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", รุ่นเสถียรล่าสุด:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "ล่าสุด" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "สร้างมุมมอง" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "พอร์ตของเซิร์ฟเวอร์" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change settings" msgid "Change report settings" msgstr "เปลี่ยนการตั้งค่า" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy msgid "Show report details" msgstr "แสดงตาราง" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "ข้าม" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "แสดงคำค้นนี้อีกที" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to execute \"%s\"?" msgid "Do you really want to delete this bookmark?" msgstr "คุณแน่ใจที่ต้องการจะ \"%s\"?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "หมายเหตุของตาราง" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "ซ่อนผลคำสั่ง SQL" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,383 +2742,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "คัดลอกฐานข้อมูลเป็น" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add new field" msgid "Add table prefix" msgstr "เพิ่มฟิลด์ใหม่" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "แทนที่คำนำไปยังตาราง" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "คัดลอกคำนำไปยังตาราง" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "ก่อนหน้า" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "ต่อไป" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "วันนี้" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "มกราคม" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "กุมภาพันธ์" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "มีนาคม" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "เมษายน" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "พฤษภาคม" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "มิถุนายน" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "กรกฎาคม" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "สิงหาคม" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "กันยายน" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "ตุลาคม" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "พฤศจิกายน" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "ธันวาคม" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "ม.ค." #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "ก.พ." #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "มี.ค." #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "เม.ย." #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "พ.ค." #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "มิ.ย." #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "ก.ค." #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ส.ค." #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ก.ย." #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ต.ค." #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "พ.ย." #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "ธ.ค." -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "อาทิตย์" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "วันจันทร์" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "วันอังคาร" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "วันพุธ" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "วันพฤหัสบดี" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "วันศุกร์" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "วันเสาร์" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "จ." #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "อ." #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "พ." #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "พฤ." #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "ศ." #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "ส." #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "อา." #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "จ." #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "อ." #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "พ." #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "พฤ." #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "ศ." #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "ส." #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "สัปดาห์" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "ปฎิทินแบบ เดือน/ปี" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "ไม่มี" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "ชั่วโมง" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "นาที" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "วินาที" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "ใช้ช่องใส่ข้อความ (text field)" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%d ไม่ใช่หมายเลขแถวที่ถูกต้อง" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3209,8 +3216,8 @@ msgstr "ในคำค้น" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "ฐานข้อมูล" @@ -4123,7 +4130,7 @@ msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อ #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4179,8 +4186,8 @@ msgstr "ตารางจำลอง (View)" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "ตาราง" @@ -4570,47 +4577,47 @@ msgstr "MySQL ไม่รองรับ %s" msgid "Unknown table status:" msgstr "ไม่ทราบสถานะตาราง: " -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format msgid "Target database `%s` was not found!" msgstr "ค้นหาในฐานข้อมูล" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "ชื่อฐานข้อมูลไม่ถูกต้อง" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ชื่อตารางไม่ถูกต้อง" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "มีข้อผิดพลาดจากเปลี่ยนชื่อตาราง %1$s เป็น %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not save table UI preferences" msgid "Could not save table UI preferences!" msgstr "ไม่สามารถบันทึกการกำหนดลักษณะตาราง UI" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4619,7 +4626,7 @@ msgstr "" "มีปัญหาในการล้างข้อมูลการตั้งค่าตาราง UL (ดูได้ที่ $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, fuzzy, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4629,19 +4636,19 @@ msgstr "" "ไม่สามารถบันทึกคุณสมบัติ UI \"% s\" ได้ การเปลี่ยนแปลงจะมีผล หลังจากคุณรีเฟรชหน้านี้ " "โปรดตรวจสอบหากมีการเปลี่ยนโครงสร้างของตาราง" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "ชื่อของไพรมารีคีย์ จะต้องเป็น PRIMARY เท่านั้น" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "เปลี่ยนชื่อดัชนีเป็น PRIMARY ไม่ได้!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "ไม่ได้กำหนดส่วนใดๆ ของดัชนี!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11389,60 +11396,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "รีเลชันภายใน" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "บันทึกการแก้ไขเรียบร้อยแล้ว" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "อ่านไฟล์ไม่ได้" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "รีเลชันภายใน" @@ -11581,31 +11588,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "ไม่มีรายละเอียด" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12331,27 +12338,27 @@ msgstr "เพิ่มฟิลด์ใหม่" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" #: libraries/rte/rte_words.lib.php:43 @@ -12374,12 +12381,15 @@ msgid "trigger" msgstr "Trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "คุณไม่มีสิทธิที่สร้าง Trigger!" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "ไม่พบ Trigger %1$s ในฐานข้อมูล %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -12405,13 +12415,13 @@ msgstr "เหตุการณ์" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "คุณไม่มีสิทธิที่จะเข้ามาตรงนี้!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล" #: libraries/rte/rte_words.lib.php:71 @@ -14149,7 +14159,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14261,7 +14271,7 @@ msgstr "ที่จุดเริ่มต้นของตาราง" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14282,6 +14292,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "ที่จุดเริ่มต้นของตาราง" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15951,39 +15967,46 @@ msgstr "กระทำการ" msgid "Constraint properties" msgstr "ชื่อคอลัมน์" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "เพิ่ม constraints" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "รีเลชันภายใน" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "รีเลชันภายใน" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15995,13 +16018,13 @@ msgstr "เลือกฟิลด์ที่ต้องการแสดง msgid "Foreign key constraint %s has been dropped" msgstr "ตรวจสอบคีย์ต่างประเทศ:" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "ชื่อคอลัมน์" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy msgid "+ Add column" msgstr "เพิ่มฟิลด์ใหม่" diff --git a/po/tk.po b/po/tk.po index ae1cc56587..911cf22651 100644 --- a/po/tk.po +++ b/po/tk.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2013-05-07 17:12+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Turkmen - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Hemmesini görkez" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Use this value" msgid "Select database first" msgstr "Şu bahany ulan" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Hemmesini görkez" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show all" msgid "Show hidden navigation tree items." msgstr "Hemmesini görkez" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2344,109 +2351,109 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show all" msgid "Show report details" msgstr "Hemmesini görkez" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Show all" msgid "Show arguments" msgstr "Hemmesini görkez" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,351 +2462,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Show all" msgid "Copy tables to" msgstr "Hemmesini görkez" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Use this value" msgid "Please enter a valid date" msgstr "Şu bahany ulan" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2893,8 +2900,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3697,7 +3704,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3753,8 +3760,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4120,47 +4127,47 @@ msgstr "" msgid "Unknown table status:" msgstr "Hemmesini görkez" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Database %1$s has been created." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s maglumatlar ulgamy döredildi" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4168,19 +4175,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10351,55 +10358,55 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been added." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be added!" msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Database %1$s has been created." msgid "FOREIGN KEY relation has been removed." msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Database %1$s has been created." msgid "Error: Internal relation could not be removed!" msgstr "%1$s maglumatlar ulgamy döredildi." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relation has been removed." @@ -10519,31 +10526,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11185,26 +11192,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11225,12 +11232,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11251,12 +11258,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12867,7 +12874,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12975,7 +12982,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12996,6 +13003,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14441,37 +14452,44 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Database %1$s has been created." msgid "Internal relations" msgstr "%1$s maglumatlar ulgamy döredildi." -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14481,11 +14499,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "%1$s maglumatlar ulgamy döredildi." -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/tr.po b/po/tr.po index cea11a20df..f6929b49cd 100644 --- a/po/tr.po +++ b/po/tr.po @@ -3,11 +3,11 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-27 05:31+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" @@ -63,11 +63,12 @@ msgstr "Tablo açıklamaları:" #: libraries/tracking.lib.php:893 libraries/tracking.lib.php:991 #: templates/columns_definitions/column_name.phtml:18 #: templates/table/index_form.phtml:124 -#: templates/table/relation/common_form.phtml:11 -#: templates/table/relation/common_form.phtml:26 -#: templates/table/relation/common_form.phtml:78 -#: templates/table/relation/foreign_key_row.phtml:178 -#: templates/table/relation/foreign_key_row.phtml:190 +#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:19 +#: templates/table/relation/common_form.phtml:35 +#: templates/table/relation/common_form.phtml:87 +#: templates/table/relation/foreign_key_row.phtml:180 +#: templates/table/relation/foreign_key_row.phtml:192 #: templates/table/relation/internal_relational_row.phtml:73 #: templates/table/search/table_header.phtml:6 #: templates/table/search/zoom_result_form.phtml:33 @@ -517,7 +518,7 @@ msgstr "" msgid "Succeeded" msgstr "Başarılı oldu" -#: import.php:63 js/messages.php:595 +#: import.php:63 js/messages.php:601 msgid "Failed" msgstr "Başarısız oldu" @@ -617,7 +618,7 @@ msgstr "\"DROP DATABASE\" ifadesi etkisizleştirildi." 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:445 js/messages.php:603 +#: import_status.php:116 js/messages.php:445 js/messages.php:609 #: libraries/Util.php:800 libraries/export.lib.php:516 #: libraries/plugins/schema/ExportRelationSchema.php:297 user_password.php:298 msgid "Back" @@ -642,7 +643,7 @@ msgstr "" msgid "General settings" msgstr "Genel ayarlar" -#: index.php:191 js/messages.php:628 +#: index.php:191 js/messages.php:634 #: libraries/display_change_password.lib.php:50 #: libraries/display_change_password.lib.php:53 user_password.php:292 msgid "Change password" @@ -1052,7 +1053,7 @@ msgstr "En az bir sütun eklemek zorundasınız." #: js/messages.php:127 libraries/insert_edit.lib.php:1615 #: templates/columns_definitions/column_definitions_form.phtml:163 #: templates/table/index_form.phtml:242 -#: templates/table/relation/common_form.phtml:126 +#: templates/table/relation/common_form.phtml:135 msgid "Preview SQL" msgstr "SQL Önizle" @@ -1510,7 +1511,7 @@ msgstr "Çıktıyı açıkla" msgid "Status" msgstr "Durum" -#: js/messages.php:287 js/messages.php:873 +#: js/messages.php:287 js/messages.php:879 #: libraries/plugins/export/ExportHtmlword.php:486 #: libraries/plugins/export/ExportOdt.php:605 #: libraries/plugins/export/ExportTexytext.php:447 @@ -1961,7 +1962,7 @@ msgid "Second step of normalization (2NF)" msgstr "Normalleştirmenin ikinci adımı (2NF)" #. l10n: Display text for calendar close link -#: js/messages.php:437 js/messages.php:742 libraries/normalization.lib.php:285 +#: js/messages.php:437 js/messages.php:748 libraries/normalization.lib.php:285 msgid "Done" msgstr "Bitti" @@ -2041,7 +2042,7 @@ msgstr "Seçilen bağımlılıklar yok!" #: templates/columns_definitions/column_definitions_form.phtml:166 #: templates/server/variables/link_template.phtml:2 #: templates/table/gis_visualization/gis_visualization.phtml:48 -#: templates/table/relation/common_form.phtml:127 +#: templates/table/relation/common_form.phtml:136 #: templates/table/structure/partition_definition_form.phtml:11 msgid "Save" msgstr "Kaydet" @@ -2123,7 +2124,7 @@ msgstr "İki farklı sütun seçin" msgid "Data point content" msgstr "Veri imleci içeriği" -#: js/messages.php:503 js/messages.php:663 js/messages.php:680 +#: js/messages.php:503 js/messages.php:669 js/messages.php:686 #: libraries/ErrorHandler.php:363 libraries/insert_edit.lib.php:2646 #: templates/table/index_form.phtml:154 templates/table/index_form.phtml:199 msgid "Ignore" @@ -2175,6 +2176,18 @@ msgstr "" "doğrudan istendiğinde bu değerler içindeki anahtarı" #: js/messages.php:528 +#, fuzzy +#| msgid "" +#| "MySQL accepts additional values not selectable by the slider; key in " +#| "those values directly if desired" +msgid "" +"MySQL accepts additional values not selectable by the datepicker; key in " +"those values directly if desired" +msgstr "" +"MySQL, kaydırıcı tarafından seçilebilir olmayan ek değerleri kabul eder; " +"doğrudan istendiğinde bu değerler içindeki anahtarı" + +#: js/messages.php:534 msgid "" "Indicates that you have made changes to this page; you will be prompted for " "confirmation before abandoning changes" @@ -2182,24 +2195,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:533 +#: js/messages.php:539 msgid "Select referenced key" msgstr "Kaynak gösterilen anahtarı seç" -#: js/messages.php:534 +#: js/messages.php:540 msgid "Select Foreign Key" msgstr "Dış Anahtarı seç" -#: js/messages.php:536 +#: js/messages.php:542 msgid "Please select the primary key or a unique key!" msgstr "Lütfen birincil anahtarı veya benzersiz anahtarı seçin!" -#: js/messages.php:537 templates/database/designer/side_menu.phtml:91 +#: js/messages.php:543 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:539 +#: js/messages.php:545 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?" @@ -2207,76 +2220,76 @@ msgstr "" "Değişiklikleri yerleşime kaydetmediniz. Eğer bunları kaydetmezseniz, " "kaybolacaklardır. Devam etmek istiyor musunuz?" -#: js/messages.php:542 +#: js/messages.php:548 msgid "Page name" msgstr "Sayfa adı" -#: js/messages.php:543 templates/database/designer/side_menu.phtml:56 +#: js/messages.php:549 templates/database/designer/side_menu.phtml:56 #: templates/database/designer/side_menu.phtml:59 msgid "Save page" msgstr "Sayfayı kaydet" -#: js/messages.php:544 templates/database/designer/side_menu.phtml:63 +#: js/messages.php:550 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:545 templates/database/designer/side_menu.phtml:49 +#: js/messages.php:551 templates/database/designer/side_menu.phtml:49 #: templates/database/designer/side_menu.phtml:52 msgid "Open page" msgstr "Sayfayı aç" -#: js/messages.php:546 +#: js/messages.php:552 msgid "Delete page" msgstr "Sayfayı sil" -#: js/messages.php:547 templates/database/designer/side_menu.phtml:10 +#: js/messages.php:553 templates/database/designer/side_menu.phtml:10 msgid "Untitled" msgstr "Başlıksız" -#: js/messages.php:548 +#: js/messages.php:554 msgid "Please select a page to continue" msgstr "Lütfen devam etmek için bir sayfa seçin" -#: js/messages.php:549 +#: js/messages.php:555 msgid "Please enter a valid page name" msgstr "Lütfen geçerli bir sayfa adı girin" -#: js/messages.php:551 +#: js/messages.php:557 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:552 +#: js/messages.php:558 msgid "Successfully deleted the page" msgstr "Sayfa başarılı olarak silindi" -#: js/messages.php:553 +#: js/messages.php:559 msgid "Export relational schema" msgstr "İlişkisel şemayı dışa aktar" -#: js/messages.php:554 +#: js/messages.php:560 msgid "Modifications have been saved" msgstr "Değişiklikler kaydedildi" -#: js/messages.php:557 +#: js/messages.php:563 #, php-format msgid "Add an option for column \"%s\"." msgstr "\"%s\" sütunu için bir seçenek ekleyin." -#: js/messages.php:558 +#: js/messages.php:564 #, php-format msgid "%d object(s) created." msgstr "%d nesne oluşturuldu." -#: js/messages.php:559 libraries/sql_query_form.lib.php:409 +#: js/messages.php:565 libraries/sql_query_form.lib.php:409 msgid "Submit" msgstr "Gönder" -#: js/messages.php:562 +#: js/messages.php:568 msgid "Press escape to cancel editing." msgstr "Düzenlemeyi iptal etmek için Esc tuşuna basın." -#: js/messages.php:564 +#: js/messages.php:570 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?" @@ -2284,15 +2297,15 @@ msgstr "" "Bazı verileri düzenlediniz ve kaydedilmediler. Veriyi kaydetmeden önce bu " "sayfadan ayrılmak istediğinize emin misiniz?" -#: js/messages.php:567 +#: js/messages.php:573 msgid "Drag to reorder." msgstr "Yen.düzenleme için sürükleyin." -#: js/messages.php:568 +#: js/messages.php:574 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:570 +#: js/messages.php:576 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 " @@ -2302,27 +2315,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:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "İşaretlemek/işareti kaldırmak için tıklayın." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Sütun adını kopyalamak için çift tıklayın." -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Tümünü göster" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2331,12 +2344,12 @@ msgstr "" "Düzenle, Kopyala ve Sil bağlantıları ile ilgili özellikler kaydedildikten " "sonra çalışmayabilir." -#: js/messages.php:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2344,103 +2357,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Orijinal uzunluk" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "iptal" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "İptal edilen" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Başarılı" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "İçe aktarma durumu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Dosyaları buraya bırakın" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Önce veritabanını seçin" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Bağlantıya git:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Sütun adını kopyala." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Parola üret" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Üret" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Daha fazla" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Paneli göster" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Paneli gizle" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Gizli gezinti ağacı öğelerini göster." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Ana panel ile bağlantıyı kopar" -#: js/messages.php:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2450,27 +2463,27 @@ msgstr "" "%s, %s tarihinde yayınlandı." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", son sağlam sürüm:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "güncel" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Görünüm oluştur" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Hata raporu gönder" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Hata raporu gönder" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" @@ -2478,15 +2491,15 @@ msgstr "" "Önemli bir JavaScript hatası meydana geldi. Bir hata raporu göndermek ister " "misiniz?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Rapor ayarlarını değiştir" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Rapor ayrıntılarını göster" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2494,7 +2507,7 @@ msgstr "" "Dışa aktarmanız PHP seviyesindeki düşük çalıştırma süresinden dolayı " "tamamlanmadı!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2503,58 +2516,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "Sunucu üzerinde bazı hatalar algılandı!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Lütfen bu pencerenin altına bakın." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Tümünü Yoksay" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Bu sorgu tekrar çalıştırılsın mı?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Bu yer imini silmek istediğinize emin misiniz?" -#: js/messages.php:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s bağımsız değişken(ler)i geçti" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Bağımsız değişkenleri göster" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Bağımsız değişkenleri gizle" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Aldığı süre:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2569,347 +2582,347 @@ msgstr "" "olabilir. Safari'de, genellikle böyle bir soruna \"Özel Kipte Tarama\" neden " "olur." -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Tabloları şuraya kopyala" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "Tablo ön eki ekle" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "Tabloyu ön ek ile değiştir" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Tabloyu ön ek ile kopyala" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Önceki" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Sonraki" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Bugün" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Ocak" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Şubat" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Mart" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Nisan" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Mayıs" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Haziran" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Temmuz" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Ağustos" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Eylül" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Ekim" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Kasım" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Aralık" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Oca" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Şub" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Nis" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Haz" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Tem" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Ağu" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Eyl" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Eki" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Kas" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Ara" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Pazar" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Pazartesi" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Salı" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Çarşamba" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Perşembe" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Cuma" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Cumartesi" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Paz" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Ptesi" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Sal" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Çar" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Per" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Cum" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Ctesi" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Pz" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Pt" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Sa" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ça" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Pe" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Cu" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Ct" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Hs" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Saat" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Dakika" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Saniye" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Bu alan gereklidir" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Lütfen bu alanı düzeltin" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Lütfen geçerli bir eposta adresi girin" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Lütfen geçerli bir URL girin" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Lütfen geçerli bir tarih girin" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Lütfen geçerli bir tarih (ISO) girin" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Lütfen geçerli bir sayı girin" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "Lütfen geçerli bir kredi kartı numarası girin" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Lütfen sadece rakam girin" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "Lütfen aynı değeri tekrar girin" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "Lütfen {0} karakterden daha fazla girmeyin" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Lütfen en az {0} karakter girin" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "Lütfen {0} ve {1} arasında bir değer girin" -#: js/messages.php:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "Lütfen geçerli bir tarih veya saat girin" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Lütfen geçerli bir ONALTILIK girdi değeri girin" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3006,8 +3019,8 @@ msgstr "Yeniden sorgula" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Veritabanı" @@ -3804,7 +3817,7 @@ msgstr "%s indeksi kaldırıldı." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3862,8 +3875,8 @@ msgstr "Görünüm" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tablo" @@ -4223,39 +4236,39 @@ msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez." msgid "Unknown table status:" msgstr "Bilinmeyen tablo durumu:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Kaynak veritabanı `%s` bulunamadı!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Hedef veritabanı `%s` bulunamadı!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Geçersiz veritabanı:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Geçersiz tablo adı:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s tablo adını %2$s tablo adına değiştirme başarısız!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s tablosu %2$s olarak yeniden adlandırıldı." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Tablo KA tercihleri kaydedilemedi!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4264,7 +4277,7 @@ msgstr "" "Tablo KA tercihlerini temizleme başarısız ($cfg['Servers'][$i]" "['MaxTableUiprefs'] %s bakın)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4275,19 +4288,19 @@ msgstr "" "yenilemenizden sonra kalıcı olmayacaktır. Eğer tablo yapısı değiştirilmişse " "lütfen kontrol edin." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birincil anahtarın adı \"PRIMARY\" olmalıdır!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "İndeks'i PRIMARY olarak yeniden adlandıramazsınız!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Tanımlı indeks kısımları yok!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11003,47 +11016,47 @@ msgstr "Sözdizimi vurgulamalı JSON gibi metni biçimlendirir." msgid "Formats text as XML with syntax highlighting." msgstr "Sözdizimi vurgulamalı XML gibi metni biçimlendirir." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Hata: ilişki zaten var." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY ilişkisi eklendi." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Hata: FOREIGN KEY ilişkisi eklenemedi!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Hata: Sütun(lar)da indeks eksik." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Hata: İlişkisel özellikler etkisizleştirildi!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "İç ilişki eklendi." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Hata: İç ilişki eklenemedi!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY ilişkisi kaldırıldı." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Hata: FOREIGN KEY ilişkisi kaldırılamadı!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Hata: İç ilişki kaldırılamadı!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "İç ilişki kaldırıldı." @@ -11166,11 +11179,11 @@ msgstr "" "Güncellenmiş yapılandırma dosyasını yüklemek için phpMyAdmin'e yeniden " "oturum açın." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Açıklama yok" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -11180,7 +11193,7 @@ msgstr "" "değilsiniz. phpMyAdmin yapılandırma depolamasını ayarlamak için herhangi bir " "veritabanının 'İşlemler' sekmesine gidebilirsiniz." -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -11189,14 +11202,14 @@ msgstr "" "Önce 'phpmyadmin' adında bir veritabanı %soluşturun%s ve orada phpMyAdmin " "yapılandırma depolama tablolarını ayarlayın." -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" "Şu anki veritabanında phpMyAdmin yapılandırma depolaması %soluşturun%s." -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "Eksik phpMyAdmin yapılandırma depolama tablolarını %soluşturun%s." @@ -11870,30 +11883,39 @@ msgid "routine" msgstr "yordam" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Bir yordam oluşturmak için gerekli yetkilere sahip değilsiniz" #: libraries/rte/rte_words.lib.php:35 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to edit this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" "%2$s veritabanında bulunan %1$s adında yordam yok. Bu yordamı düzenlemek " "için gerekli yetkiler yetersiz olabilir" #: libraries/rte/rte_words.lib.php:39 -#, php-format +#, fuzzy, php-format +#| msgid "" +#| "No routine with name %1$s found in database %2$s. You might be lacking " +#| "the necessary privileges to view/export this routine" msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" "%2$s veritabanında bulunan %1$s adında yordam yok. Bu yordamı görüntülemek/" "dışa aktarmak için gerekli yetkiler yetersiz olabilir" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "%1$s veritabanında %2$s adıyla yordam bulunamadı" #: libraries/rte/rte_words.lib.php:43 @@ -11914,12 +11936,15 @@ msgid "trigger" msgstr "trigger" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Bir tetikleyici oluşturmak için gerekli yetkilere sahip değilsiniz" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "%2$s veritabanında %1$s adıyla tetikleyici bulunamadı" #: libraries/rte/rte_words.lib.php:57 @@ -11940,12 +11965,15 @@ msgid "event" msgstr "olay" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Bir olay oluşturmak için gerekli yetkilere sahip değilsiniz" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "%2$s veritabanında %1$s adıyla olay bulunamadı" #: libraries/rte/rte_words.lib.php:71 @@ -13755,8 +13783,12 @@ msgid "Unexpected end of CASE expression" msgstr "Beklenmedik Büyük/Küçük harf ifadesi sonu" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 +#, fuzzy +#| msgid "" +#| "A symbol name was expected! A reserved keyword can not be used as a field " +#| "name without backquotes." msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" "Bir sembol adı beklenmekte! Ayrılmış bir anahtar kelime ters eğik tırnakları " @@ -13858,7 +13890,7 @@ msgstr "Beklenmedik ifade başlangıcı." msgid "Unrecognized statement type." msgstr "Tanınmayan ifade türü." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Daha önce hiç işlem başlatılmadı." @@ -13879,6 +13911,12 @@ msgstr "Bu tür yan tümce daha önce ayrıştırıldı." msgid "Unrecognized keyword." msgstr "Tanınmayan anahtar kelime." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Beklenmedik ifade başlangıcı." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Varlığın adı beklenmekte." @@ -15362,38 +15400,45 @@ msgstr "Eylemler" msgid "Constraint properties" msgstr "Kısıtlama özellikleri" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Sadece indeksi olan sütunlar görüntülenecektir. Aşağıda bir indeks " "tanımlayabilirsiniz." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Dış anahtar kısıtlaması" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Kısıtlama ekle" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "İç ilişkiler" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "İç ilişki" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Karşılık gelen bir FOREIGN KEY ilişkisi varken iç ilişki mümkün değildir." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Görüntülemek için sütun seçin:" @@ -15402,11 +15447,11 @@ msgstr "Görüntülemek için sütun seçin:" msgid "Foreign key constraint %s has been dropped" msgstr "Dış anahtar kısıtlaması %s kaldırıldı" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Kısıtlama adı" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Sütun ekle" diff --git a/po/tt.po b/po/tt.po index b423cc2e9e..932bc3be03 100644 --- a/po/tt.po +++ b/po/tt.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:22+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Tatar - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Alan iseme" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Barısın kürsät" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Tärtip buyınça urın" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Özderelde" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy msgid "Import status" msgstr "Biremdän alu" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Tüşämä Saylaw" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy msgid "Go to link:" msgstr "Biremleklär yuq" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Alan iseme" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Sersüz Ürçetü" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Ürçet" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dşm" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barısın kürsät" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "Tezeşlär" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show grid" msgid "Show hidden navigation tree items." msgstr "Sırlı kürsät" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy msgid "Unlink from main panel" msgstr "Biremlek saqlaw köyläneşe" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2652,123 +2659,123 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy msgid ", latest stable version:" msgstr "Server söreme" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy msgid "up to date" msgstr "Biremleklär yuq" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy msgid "Create view" msgstr "Server söreme" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy msgid "Send error report" msgstr "Server ID'e" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy msgid "Submit error report" msgstr "Server ID'e" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, 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:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Açıq tüşämä tezmäse" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Qarama" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Bu sorawnı qabat kürsätäse" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL-soraw" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Tüşämä açıqlaması" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy msgid "Hide arguments" msgstr "SQL-soraw" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2777,38 +2784,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Biremlekne boña kübäyt" -#: js/messages.php:715 +#: js/messages.php:721 #, 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:716 +#: js/messages.php:722 #, 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:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Uzğan" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2816,96 +2823,96 @@ msgid "Next" msgstr "Kiläse" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Tulayım" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Binar" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Äpr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "May" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Yün" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Yül" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Aug" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Ökt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Ğın" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Äpr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -2913,78 +2920,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Yün" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Yül" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Aug" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Ökt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Nöy" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dek" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Ykş" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dşm" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sşm" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Cmğ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2992,223 +2999,223 @@ msgid "Sun" msgstr "Ykş" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Dşm" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Sşm" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Çrş" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Pnc" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Cmğ" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Şmb" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Ykş" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dşm" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sşm" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Çrş" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pnc" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Cmğ" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Şmb" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Buş" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "totıla" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekund sayın" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Bu mätennän" -#: js/messages.php:889 +#: js/messages.php:895 #, 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:890 +#: js/messages.php:896 #, 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:891 +#: js/messages.php:897 #, 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:894 +#: js/messages.php:900 #, 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:896 +#: js/messages.php:902 #, 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:899 +#: js/messages.php:905 #, 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:901 +#: js/messages.php:907 #, 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:904 +#: js/messages.php:910 #, 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:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, 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:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, 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:944 +#: js/messages.php:950 #, 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:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3305,8 +3312,8 @@ msgstr "sorawda" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Biremlek" @@ -4232,7 +4239,7 @@ msgstr "\"%s\" digän tezeş salındı." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4288,8 +4295,8 @@ msgstr "Qaraş" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Tüşämä" @@ -4681,55 +4688,55 @@ msgstr "Bu MySQL server %s saqlaw enginen totmí." msgid "Unknown table status:" msgstr "Tüşämälär kürsätäse" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format msgid "Source database `%s` was not found!" msgstr "Biremlektä ezläw: " -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "%s digän tışlaw tabılmadı!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Yaraqsız biremlek" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Tüşämä adı yaraqsız" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "\"%s\" tüşämäse \"%s\" itep ataldı" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: \"%1$s\"" msgid "Could not save table UI preferences!" msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\"" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4737,19 +4744,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Bu töp açqıçnıñ adı \"PRIMARY\" bulırğa tieş!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Açqıçnı \"PRIMARY\" itep atap bulmí!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11562,60 +11569,60 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "Üzgärtülär saqlandı" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy msgid "Internal relation has been added." msgstr "Eçke bäyläneş" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be added!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "Üzgärtülär saqlandı" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "File could not be read" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "File could not be read" msgid "Error: Internal relation could not be removed!" msgstr "Birem uqıp bulmadı" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy msgid "Internal relation has been removed." msgstr "Eçke bäyläneş" @@ -11747,31 +11754,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "Açıqlamasız" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12491,27 +12498,27 @@ msgstr "%s alan östäw" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Bu biremlektä ber genä dä tüşämä yuq." #: libraries/rte/rte_words.lib.php:43 @@ -12538,13 +12545,13 @@ msgstr "Yaña qullanuçı östäw" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Bu biremlektä ber genä dä tüşämä yuq." #: libraries/rte/rte_words.lib.php:57 @@ -12570,13 +12577,13 @@ msgstr "Cibärelde" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Bonda bulu öçen, xoquqlarıñ citmi!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Bu biremlektä ber genä dä tüşämä yuq." #: libraries/rte/rte_words.lib.php:71 @@ -14354,7 +14361,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14470,7 +14477,7 @@ msgstr "Tüşämä Başına" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14491,6 +14498,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Tüşämä Başına" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -16174,39 +16187,46 @@ msgstr "Eş" msgid "Constraint properties" msgstr "Alan iseme" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Çikläwlär östise" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Eçke bäyläneş" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Eçke bäyläneş" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -16218,13 +16238,13 @@ msgstr "Kürsätäse Alan saylaw" msgid "Foreign key constraint %s has been dropped" msgstr "Yat tezeş tikşerüen sünderep" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Column names" msgid "Constraint name" msgstr "Alan iseme" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add %s field(s)" msgid "+ Add column" diff --git a/po/ug.po b/po/ug.po index e6900acd3d..4db595716f 100644 --- a/po/ug.po +++ b/po/ug.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:03+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uighur - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Columns terminated by" msgid "Double-click to copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "قۇر ئالماشۇرۇش بەلگىسى" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "بىكار قىلىش" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import" msgid "Import status" msgstr "كىرگۈزۈش" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "ھەممىنى تاللاش" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "يازدۇر" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Columns terminated by" msgid "Copy column name." msgstr "خەت ئايرىش بەلگىسى" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "پارول ھاسىللاش" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "ھاسىللاش" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "تېخىمۇ كۆپ" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "ھەممىسىنى كۆرسىتىش" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "تېزىسلار" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Indexes" msgid "Show hidden navigation tree items." msgstr "تېزىسلار" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 #, fuzzy #| msgid "Indexes" msgid "Link with main panel" msgstr "تېزىسلار" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Indexes" msgid "Unlink from main panel" msgstr "تېزىسلار" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2630,122 +2637,122 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy #| msgid "Last version" msgid ", latest stable version:" msgstr "ېيڭى نەشىر" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "%s table" #| msgid_plural "%s tables" msgid "up to date" msgstr "%s جەدۋەل" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "نەشىرنى قۇىماق" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "ئاساسىي ئالاقە ۋاريانتلىرى" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Report title" msgid "Show report details" msgstr "دوكلات تېمىسى" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Select All" msgid "Execute this query again?" msgstr "ھەممىنى تاللاش" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "راستىنلا ئجرا قىلىمسىز" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جەدۋەل ئىزاھى" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2754,36 +2761,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "كۆچۈرۈلگەن ساندان" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Repair table" msgid "Add table prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Repair table" msgid "Replace table with prefix" msgstr "جەدۋەلنى ئوڭشاش" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "ئالدىنقى ئاي" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2791,149 +2798,149 @@ msgid "Next" msgstr "كىيىنكى ئاي" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "بۈگۈن" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "قەھرىتان" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "ھۇت" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "نورۇز" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "ئۈمىد" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "باھار" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "6-ئاي" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "7-ئاي" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "8-ئاي" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "9-ئاي" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "10-ئاي" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "11-ئاي" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "12-ئاي" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "1-ئاي" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "2-ئاي" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "3-ئاي" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "4-ئاي" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "5-ئاي" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "6-ئاي" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "چىللە" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "تومۇز" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "مىزان" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "ئوغۇز" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "ئوغلاق" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "كۆنەك" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "يەكشەنبە" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "دۈشەنبە" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "سەيشەنبە" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "چارشەنبە" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "پەيشەنبە" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "جۈمە" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "شەنبە" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2941,203 +2948,203 @@ msgid "Sun" msgstr "يەكشەنبە" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "دۈشەنبە" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "سەيشەنبە" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "چارشەنبە" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "پەيشەنبە" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "جۈمە" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "شەنبە" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "يەكشەنبە" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "دۈشەنبە" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "سەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "چارشەنبە" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "پەيشەنبە" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "جۈمە" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "شەنبە" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "ھەپتە" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "يوق" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "سائەت" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "مىنۇت" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "سېكنۇت" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid email address" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid URL" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date ( ISO )" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid credit card number" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter only digits" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter the same value again" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter at least {0} characters" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value between {0} and {1}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value less than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a value greater than or equal to {0}" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid date or time" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "%d is not valid row number." msgid "Please enter a valid HEX input" msgstr "%dئۈنۈملۈك قۇر سانى ئەمەس" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3234,8 +3241,8 @@ msgstr "تەكشۈرۈش" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "ساندان" @@ -4147,7 +4154,7 @@ msgstr "ئۆچۈرۈلگەن تېزىسلار %s." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4203,8 +4210,8 @@ msgstr "قاراش" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "جەدۋەل" @@ -4586,55 +4593,55 @@ msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ." msgid "Unknown table status:" msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "تېما %s تېپىلمىدى!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "ئۈنۈمسىز ساندان" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "ئۈنۈمسىز جەدۋەل ئىسمى" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى." -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not load default configuration from: %1$s" msgid "Could not save table UI preferences!" msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى." -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4642,19 +4649,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11260,63 +11267,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "!خاتالىق:بۇناسىۋەت ئاللىقاچان مەۋجۈت." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "سىرتقى مۇناسىۋەتلىك ئۇلانما قۇشۇلدى" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "!خاتالىق:مۇناسىۋەت قۇشۇلمىغان." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11442,31 +11449,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -12176,27 +12183,27 @@ msgid "routine" msgstr "دائىملىق" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "سانداندا جەدۋەل يوق" #: libraries/rte/rte_words.lib.php:43 @@ -12221,13 +12228,13 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "سانداندا جەدۋەل يوق" #: libraries/rte/rte_words.lib.php:57 @@ -12254,13 +12261,13 @@ msgid "event" msgstr "ھادىسە" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "سانداندا جەدۋەل يوق" #: libraries/rte/rte_words.lib.php:71 @@ -13965,7 +13972,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14079,7 +14086,7 @@ msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14100,6 +14107,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "جەدېۋەلنىڭ چوڭ-كىچىكلىكىنى كۆرسىتىش" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -15722,40 +15735,47 @@ msgstr "ئامال" msgid "Constraint properties" msgstr "دائىملىق" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "مەجبۇرى قوشۇش" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Internal relation added" msgid "Internal relations" msgstr ".ئىچكى ئۇلىنىش مۇاسىۋىتى قۇشۇلدى" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" # column نى سۆزلەم دەپ ئالساق مۇۋاپىق بولغىدەك -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15767,13 +15787,13 @@ msgstr "سۆزلەمنى كۆرسەتمەسلىك" msgid "Foreign key constraint %s has been dropped" msgstr "مەجبۇرى قوشۇش" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Routines" msgid "Constraint name" msgstr "دائىملىق" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add/Delete columns" msgid "+ Add column" diff --git a/po/uk.po b/po/uk.po index 0212db5c99..db698defd3 100644 --- a/po/uk.po +++ b/po/uk.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-08-19 13:18+0000\n" "Last-Translator: Bohdan S \n" "Language-Team: Ukrainian - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2346,28 +2353,28 @@ msgstr "" "ASC/DESC.
- Ctrl+клік чи Alt+клік (для Mac: Shift+Option+клік) для " "видалення стовпчика із списку ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Клацніть для встановлення/зняття позначки." -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Клацніть двічі, щоб скопіювати назву стовпчика." -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" "Клацніть на стрілку випадаючого меню
для перемикання видимості " "стовпчика." -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Показати все" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2376,13 +2383,13 @@ msgstr "" "редагування, прапорцем, посиланнями Редагувати, Копіювати та Видаляти можуть " "не працювати після збереження." -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" "Будь-ласка введіть допустимий шістнадцятковий рядок. Допустимі символи: 0-9, " "A-F." -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2390,111 +2397,111 @@ msgstr "" "Ви дійсно хочете побачити усі рядки? Для великих таблиць це може призвести " "до зависання браузеру." -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original string" msgid "Original length" msgstr "Початковий рядок" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "скасувати" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Перервано" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Успішно" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Стан імпорту" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Скинути файли сюди" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Спочатку оберіть базу даних" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Друк" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" "Ви також можете редагувати більшість значень
двіччі клацнувши прямо " "по них." -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" "Ви також можете редагувати більшість колонок
клацнувши безпосередньо " "на них." -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Перейти за посиланням:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Копіювати назву стовпчик(ів)." -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" "Клацніть правою кнопкою назву стовпчика, щоб скопіювати його в буфер обміну." -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Згенерувати пароль" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Згенерувати" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Більше" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show Panel" msgid "Show panel" msgstr "Показати панель" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Hide Panel" msgid "Hide panel" msgstr "Приховати панель" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Показати приховані пункти дерева навігації." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "Зв'язати з головною панеллю" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "Видалити зв'язок з головною панеллю" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" "Запитану сторінку не знайдено в історії, можливо минув її термін зберігання." -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2504,50 +2511,50 @@ msgstr "" "Найновіша версія %s, випущена %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", остання стабільна версія:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "оновлено" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Створити подання" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Send error reports" msgid "Send error report" msgstr "Надіслати звіти про помилку" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Submit Error Report" msgid "Submit error report" msgstr "Надіслати звіт про помилку" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" "Трапилася фатальна помилка JavaScript. Ви хочете відіслати звіт про неї?" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Change Report Settings" msgid "Change report settings" msgstr "Змінити налаштування звіту" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show Report Details" msgid "Show report details" msgstr "Показати подробиці звіту" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" @@ -2555,7 +2562,7 @@ msgstr "" "Ваш експорт є неповним у зв'язку з низьким часовим лімітом для виконання на " "рівні PHP!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2565,63 +2572,63 @@ msgstr "" "надсилання деякі поля може бути проігноровано через значення РНР " "max_input_vars." -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "На сервері були виявлені деякі помилки!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "Будь-ласка зверніть увагу на нижню частину цього вікна." -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Ігнорувати все" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "Згідно ваших налаштувань, що наразі вносяться, будьте терплячими." -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Виконати цей запит ще раз?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "Ви дійсно бажаєте видалити цю закладку?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format #| msgid "Execute" msgid "%s queries executed %s times in %s seconds." msgstr "Виконати" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Коментарі таблиці" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search results" msgid "Hide arguments" msgstr "Сховати результати пошуку" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2630,383 +2637,383 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Копіювати базу даних в" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Додати префікс таблиці:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Замінити префікс таблиці" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Копіювати таблицю з префіксом" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Попередня" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Наступна" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Сьогодні" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Січень" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Лютий" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Березень" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Квітень" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Травень" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Червень" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Липень" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Серпень" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Вересень" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Жовтень" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Листопад" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Грудень" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Січ" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Лют" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Бер" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Квт" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Трв" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Чрв" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Лип" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Сер" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Вер" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Жов" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Лис" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Гру" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Неділя" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Понеділок" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Вівторок" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Середа" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Четвер" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "П'ятниця" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Субота" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "Нед" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Пон" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Вт" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Сер" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Чт" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Пт" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Сб" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "Нд" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "Пн" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "Вт" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "Ср" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "Чт" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "Пт" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "Сб" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Тж" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "календар-місяць-рік" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "немає" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Година" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Хвилина" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Секунда" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Використовувати текстове поле" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid email address" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid URL" msgstr "Введіть вірний номер!" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date ( ISO )" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid number" msgstr "Введіть вірний номер!" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid credit card number" msgstr "Введіть вірний номер!" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter only digits" msgstr "Введіть вірну довжину!" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter the same value again" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter at least {0} characters" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value between {0} and {1}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Please enter a valid length!" msgid "Please enter a value less than or equal to {0}" msgstr "Введіть вірну довжину!" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a value greater than or equal to {0}" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid page name" msgid "Please enter a valid date or time" msgstr "Будь-ласка, введіть допустиме ім`я сторінки" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number!" msgid "Please enter a valid HEX input" msgstr "Введіть вірний номер!" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3105,8 +3112,8 @@ msgstr "Повторити запит" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "База даних" @@ -3939,7 +3946,7 @@ msgstr "Індекс %s було знищено." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3996,8 +4003,8 @@ msgstr "Подання" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Таблиця" @@ -4364,39 +4371,39 @@ msgstr "Цей MySQL сервер не підтримує %s кодування. msgid "Unknown table status:" msgstr "Невідомий статус таблиці:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Вихідна база даних \"%s\" не знайдена!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Цільова база даних \"%s\" не знайдена!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Неправильна база даних:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Неправильна назва таблиці:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Помилка зміни назви таблиці %1$s на %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Таблицю %1$s було перейменовано в %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Неможливо зберегти табличні налаштування UI!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4405,7 +4412,7 @@ msgstr "" "Помилка очищення таблиичних налаштувань UI (див. $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4416,19 +4423,19 @@ msgstr "" "оновлення цієї сторінки. Будь ласка, перевірте чи не була змінена структура " "таблиці." -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Ім'я первинного ключа повинно бути PRIMARY!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Неможливо перейменувати індекс в PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Не визначено частини індекса!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Помилка при створенні зовнішнього ключа на %1$s (перевірте типи даних)" @@ -11317,57 +11324,57 @@ msgstr "Форматує текст у вигляді SQL запиту з під msgid "Formats text as XML with syntax highlighting." msgstr "Форматує текст у вигляді SQL запиту з підсвічуванням синтаксису." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Помилка: зв'язок вже існує." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "FOREIGN KEY відношення додано." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Помилка: реляційні функції вимкнені!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Внутрішнє відношення додано." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be added!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation has been added." msgid "FOREIGN KEY relation has been removed." msgstr "FOREIGN KEY відношення додано." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation could not be added!" msgid "Error: Internal relation could not be removed!" msgstr "Помилка: Відношення не вдалося додати!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation has been added." msgid "Internal relation has been removed." @@ -11507,18 +11514,18 @@ msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" "Перезайдіть в phpMyAdmin, щоб завантажити оновлений конфігураційний файл." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "без опису" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11526,14 +11533,14 @@ msgid "" "configuration storage there." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "Відсутня таблиця для збереження конфігурації phpMyAdmin" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12216,26 +12223,29 @@ msgid "routine" msgstr "порядок" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "У вас немає необхідних прав щоб створити порядок" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "У базі даних %2$s немає порядку з назвою %1$s" #: libraries/rte/rte_words.lib.php:43 @@ -12256,12 +12266,15 @@ msgid "trigger" msgstr "тригер" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "У вас немає необхідних прав щоб створити тригер" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "У базі даних %2$s немає тригера з назвою %1$s" #: libraries/rte/rte_words.lib.php:57 @@ -12282,12 +12295,15 @@ msgid "event" msgstr "подія" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "У вас немає необхідних прав щоб створити подію" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "У базі даних %2$s немає події з назвою %1$s" #: libraries/rte/rte_words.lib.php:71 @@ -14147,7 +14163,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14269,7 +14285,7 @@ msgstr "На початку таблиці" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14292,6 +14308,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "На початку таблиці" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15883,31 +15905,38 @@ msgstr "Дія" msgid "Constraint properties" msgstr "Обмеження зовнішнього ключа таблиці" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Обмеження зовнішнього ключа" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Додати обмеження" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Інтернаціональні зв'язки" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Внутрішні відносини" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -15915,7 +15944,7 @@ msgstr "" "Внутрішній зв'язок не вимагається, якщо існує відповідний зв'язок за " "допомогою зовнішнього ключа (FOREIGN KEY)." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Виберіть стовпець для відображення:" @@ -15925,11 +15954,11 @@ msgstr "Виберіть стовпець для відображення:" msgid "Foreign key constraint %s has been dropped" msgstr "Обмеження зовнішнього ключа" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Обмеження зовнішнього ключа" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/ur.po b/po/ur.po index 7900372f73..9a432840e0 100644 --- a/po/ur.po +++ b/po/ur.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-10-15 11:05+0200\n" "Last-Translator: Michal Čihař \n" "Language-Team: Urdu - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Comments" msgid "Double-click to copy column name." msgstr "آراء-رائے" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "تمام دکھائیں" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Lines terminated by" msgid "Original length" msgstr "سطریں کے آخر میں" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "منسوخ کریں" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "طے شدہ درآمد" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select All" msgid "Select database first" msgstr "سارا منتخب کریں" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "چھاپیں" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Logo link URL" msgid "Go to link:" msgstr "علامت ربط URL" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Comments" msgid "Copy column name." msgstr "آراء-رائے" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "پاس ورڈ بنائیں" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "بنائیں" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "مزید" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "تمام دکھائیں" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Indexes" msgid "Hide panel" msgstr "اشاریے" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "بائیں جھروکہ میں علامت دکھائیں" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "مرکزی چوکھٹے کی تخصیص کریں" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2638,122 +2645,122 @@ msgstr "" "%s, جاری کیا گیا %s." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", حالیہ مستحکم نسخہ:" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "Jump to database" msgid "up to date" msgstr "کوائفیہ جائیں" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Created" msgid "Create view" msgstr "تخلیق کیا گیا" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "General relation features" msgid "Change report settings" msgstr "جنرل ریلیشن فیچرز" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show color" msgid "Show report details" msgstr "کلر دکھائیں" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "نظر انداز کریں" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy msgid "Execute this query again?" msgstr "SQL طلب" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "جدول تبصرے" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "Hide search criteria" msgid "Hide arguments" msgstr "تلاش کسوٹی چھپائیں" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2762,38 +2769,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "کوائفیہ نقل کریں بطرف" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Replace table data with file" msgid "Add table prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 #, fuzzy #| msgid "Replace table data with file" msgid "Copy table with prefix" msgstr "جدول کوائف کو مسل سے بدلیں" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Prev" msgctxt "Previous month" msgid "Prev" msgstr "پچھلا" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2801,149 +2808,149 @@ msgid "Next" msgstr "اگلا" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "آج" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "جنوری" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "فروری" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "مارچ" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "اپریل" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "مئی" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "جون" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "جولائی" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "اگست" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "ستمبر" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "اکتوبر" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "نومبر" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "دسمبر" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "جنوری" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "فروری" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "مارچ" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "اپریل" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "مئی" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "جون" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "جولائی" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "اگست" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "ستمبر" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "اکتوبر" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "نومبر" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "دسمبر" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "اتوار" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "پیر" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "منگل" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "بدھ" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "جمعرات" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "جمعہ" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "ہفتہ" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -2951,205 +2958,205 @@ msgid "Sun" msgstr "اتوار" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "پیر" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "منگل" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "بدھ" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "جمعرات" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "جمعہ" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "ہفتہ" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "اتوار" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "پیر" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "منگل" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "بدھ" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "جمعرات" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "جمعہ" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "ہفتہ" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "ہفتہ وار" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "Done" msgctxt "Year suffix" msgid "none" msgstr "ہوچکا" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "گھنٹہ" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "منٹ" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "سیکنڈ" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Text fields" msgid "Please fix this field" msgstr "متن قطعے" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid email address" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid URL" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date ( ISO )" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid credit card number" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter only digits" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter the same value again" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter at least {0} characters" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value between {0} and {1}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Please enter a valid length" msgid "Please enter a value less than or equal to {0}" msgstr "برائے مہربانی درست لمبائی داخل کیجیئے" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a value greater than or equal to {0}" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid date or time" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Please enter a valid number" msgid "Please enter a valid HEX input" msgstr "برائے مہربانی، درست ہندسہ داخل کیجیئے" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3246,8 +3253,8 @@ msgstr "Submit Query" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "کوائفیہ" @@ -4162,7 +4169,7 @@ msgstr "اشاریہ %s چھوڑ دیا گیا ہے۔" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4220,8 +4227,8 @@ msgstr "نقل جدول" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "جدول" @@ -4610,55 +4617,55 @@ msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت msgid "Unknown table status:" msgstr "حداول کی گنتی کریں" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "خیالیہ %s نیہں ملا!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "غلط کوائفیہ" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "غلط جدول نام" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Could not open file: %s" msgid "Could not save table UI preferences!" msgstr "مسل نہیں کھول سکتا: %s" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4666,19 +4673,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -11674,63 +11681,63 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "غلطی : ریلیشن پہلے سے موجود ہے۔" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been added." msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "غلطی:ریلیشن شامل نہیں ہوا" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "اندرونی ریلیشن شامل ہو گیا" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "Modifications have been saved" msgid "FOREIGN KEY relation has been removed." msgstr "تبدیلیاں محفوظ ہو چکی ہیں" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "غلطی:ریلیشن شامل نہیں ہوا۔" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -11860,18 +11867,18 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -11879,14 +11886,14 @@ msgid "" "configuration storage there." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "phpMyAdmin تشکیل ذخیرہ جداول موجود نہیں ہے" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -12602,27 +12609,27 @@ msgid "routine" msgstr "فیلڈ کالمز شامل یا ختم کریں" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" #: libraries/rte/rte_words.lib.php:43 @@ -12649,13 +12656,13 @@ msgid "trigger" msgstr "نیا صارف اضافہ کریں" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" #: libraries/rte/rte_words.lib.php:57 @@ -12681,13 +12688,13 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "کوائیفیہ میں کوئی جدول نہیں ملا" #: libraries/rte/rte_words.lib.php:71 @@ -14405,7 +14412,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -14521,7 +14528,7 @@ msgstr "ٹیبلز کی جسامت دیکھیں" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -14542,6 +14549,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Show dimension of tables" +msgid "Unexpected ordering of clauses." +msgstr "ٹیبلز کی جسامت دیکھیں" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -16181,39 +16194,46 @@ msgstr "عمل" msgid "Constraint properties" msgstr "آراء-رائے" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "پابندیاں لگائیں" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 #, fuzzy #| msgid "Internal relation added" msgid "Internal relations" msgstr "اندرونی ریلیشن شامل ہو گیا" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -16225,13 +16245,13 @@ msgstr "کالم دکھانے کے لیے انتخاب کریں" msgid "Foreign key constraint %s has been dropped" msgstr "فارن کلید حد" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Comments" msgid "Constraint name" msgstr "آراء-رائے" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add/Delete Field Columns" msgid "+ Add column" diff --git a/po/uz.po b/po/uz.po index 118029b260..105e2898bb 100644 --- a/po/uz.po +++ b/po/uz.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-04-03 12:44+0000\n" "Last-Translator: Murodjon Abduvohidov \n" "Language-Team: Uzbek - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Майдон номлари" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Барчасини кўрсатиш" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Асл позиция" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Бекор қилиш" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Узилди" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Импорт" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Журнал файли остонаси" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Жадвалларни танланг" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "Чоп этиш" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ушбу кўринишга ўтиш" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Майдон номлари" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Парол ўрнатиш" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Генерация қилиш" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Душ" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Барчасини кўрсатиш" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Чап рамкада логотипни кўрсатиш" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Асосий рамкани мослаштириш" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2762,129 +2769,129 @@ msgstr "" "чиқарилган." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Охирги версияни текшириш" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ушбу базага ўтиш" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Версиясини тузиш" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Сервер порти" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Сервер порти" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Бошқа созланишлар" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Очиқ жадваллар рўйхати" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "Эътибор бермаслик" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ушбу сўровни қайта кўрсатиш" -#: js/messages.php:703 +#: js/messages.php:709 #, fuzzy #| msgid "Do you really want to " msgid "Do you really want to delete this bookmark?" msgstr "Ҳақиқатан ҳам сўровни бажармоқчимисиз?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL сўровлари" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Жадвал изоҳи" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL сўровлари қутиси" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2893,36 +2900,36 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Маълумотлар базасидан қуйидагига нусха олиш" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Индекс(лар)ни сақлаш" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Жадвал префиксини алмаштириш" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "Жадвални префикси билан нусхалаш" -#: js/messages.php:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Орқага" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2930,96 +2937,96 @@ msgid "Next" msgstr "Кейинги" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Жами" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Иккилик" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Мар" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Апр" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Май" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Июн" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Июл" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Авг" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Окт" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Янв" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Фев" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Мар" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Апр" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3027,78 +3034,78 @@ msgid "May" msgstr "Май" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Июн" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Июл" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Авг" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Сен" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Окт" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Ноя" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Дек" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Якш" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Душ" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Сеш" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Жум" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3106,86 +3113,86 @@ msgid "Sun" msgstr "Якш" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Душ" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Сеш" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Чор" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Пай" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Жум" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Шан" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Якш" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Душ" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Сеш" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Чор" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Пай" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Жум" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Шан" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3194,137 +3201,137 @@ msgstr "Вики" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Йўқ" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ишлатилмоқда" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "секундига" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Матнмайдонини ишлатиш" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Нотўғри порт номери" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Нотўғри порт номери" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Нотўғри порт номери" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Нотўғри порт номери" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Нотўғри порт номери" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Нотўғри порт номери" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Нотўғри порт номери" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Нотўғри порт номери" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Нотўғри порт номери" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value between {0} and {1}" msgstr "Нотўғри порт номери" -#: js/messages.php:928 +#: js/messages.php:934 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value less than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:933 +#: js/messages.php:939 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a value greater than or equal to {0}" msgstr "Нотўғри порт номери" -#: js/messages.php:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Нотўғри порт номери" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Нотўғри порт номери" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3422,8 +3429,8 @@ msgstr "сўров бўйича" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Маълумотлар базаси" @@ -4357,7 +4364,7 @@ msgstr "\"%s\" индекси ўчирилди." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4413,8 +4420,8 @@ msgstr "Намойиш" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Жадвал" @@ -4810,56 +4817,56 @@ msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар msgid "Unknown table status:" msgstr "Репликация сервери аҳволи ҳақида маълумот" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Манба база" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" мавзуси топилмади!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Нотўғри маълумотлар базаси" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Жадвал номи нотўғри" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4867,19 +4874,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Бирламчи индекс номи \"PRIMARY\" бўлиши керак!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Индексни \"PRIMARY\"га қайта номлаб бўлмади!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Индекс қисмлари белгиланмаган!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12433,63 +12440,63 @@ msgid "Formats text as XML with syntax highlighting." msgstr "" "Матнни синтаксиси ранг билан белгиланган SQL сўров сифатида форматлайди." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Хатолик: Боғлиқлик аллақачон мавжуд." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Ички алоқа ўрнатилди" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Ташқи калитга (FOREIGN KEY) алоқа ўрнатилди" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Хатолик: Боғлиқлик ўрнатилмади." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12638,18 +12645,18 @@ msgstr "" "Янгиланган конфигурация файли ишга тушиши учун, phpMyAdmin дастуридан чиқиб, " "қайта киринг." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "тавсиф мавжуд эмас" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12660,13 +12667,13 @@ msgstr "" "pmadb усули ишлатилмоқда, лекин phpMyAdmin конфигурацион файлида " "фойдаланувчи белгиланмаган" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -13455,27 +13462,27 @@ msgstr "Муолажалар" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." #: libraries/rte/rte_words.lib.php:43 @@ -13505,13 +13512,13 @@ msgstr "Триггерлар" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." #: libraries/rte/rte_words.lib.php:57 @@ -13541,13 +13548,13 @@ msgstr "Ҳодиса" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Ушбу саҳифага кириш учун Сизда етарли ҳуқуқ мавжуд эмас!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас." #: libraries/rte/rte_words.lib.php:71 @@ -15490,7 +15497,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15610,7 +15617,7 @@ msgstr "Жадвал бошига" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -15631,6 +15638,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Жадвал бошига" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17364,35 +17377,42 @@ msgstr "Амаллар" msgid "Constraint properties" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Ташқи калит чегаралари" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Чекловлар қўшиш" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ички алоқалар" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17400,7 +17420,7 @@ msgstr "" "Агар ташқи калит (FOREIGN KEY) орқали алоқа мавжуд бўлса, ички алоқа ўрнатиш " "шарт эмас." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17412,13 +17432,13 @@ msgstr "Кўрсатиладиган майдонни танлаш" msgid "Foreign key constraint %s has been dropped" msgstr "Ташқи калит чегаралари" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Жадвалларнинг ташқи калитида чекловлар" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column(s)" msgid "+ Add column" diff --git a/po/uz@latin.po b/po/uz@latin.po index 5de77f63c9..c80f8eacaf 100644 --- a/po/uz@latin.po +++ b/po/uz@latin.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2015-12-29 19:19+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Uzbek (latin) - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 #, fuzzy #| msgid "Column names" msgid "Double-click to copy column name." msgstr "Maydon nomlari" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 #, fuzzy #| msgid "Original position" msgid "Original length" msgstr "Asl pozitsiya" -#: js/messages.php:593 +#: js/messages.php:599 #, fuzzy #| msgid "Cancel" msgid "cancel" msgstr "Bekor qilish" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Uzildi" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 #, fuzzy #| msgid "Import defaults" msgid "Import status" msgstr "Import" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 #, fuzzy #| msgid "Log file threshold" msgid "Drop files here" msgstr "Jurnal fayli ostonasi" -#: js/messages.php:599 +#: js/messages.php:605 #, fuzzy #| msgid "Select Tables" msgid "Select database first" msgstr "Jadvallarni tanlang" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 #, fuzzy #| msgid "Go to view" msgid "Go to link:" msgstr "Ushbu ko‘rinishga o‘tish" -#: js/messages.php:621 +#: js/messages.php:627 #, fuzzy #| msgid "Column names" msgid "Copy column name." msgstr "Maydon nomlari" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 #, fuzzy #| msgid "Generate Password" msgid "Generate password" msgstr "Parol o‘rnatish" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Generatsiya qilish" -#: js/messages.php:631 +#: js/messages.php:637 #, fuzzy #| msgid "Mon" msgid "More" msgstr "Dush" -#: js/messages.php:634 +#: js/messages.php:640 #, fuzzy #| msgid "Show all" msgid "Show panel" msgstr "Barchasini ko‘rsatish" -#: js/messages.php:635 +#: js/messages.php:641 #, fuzzy #| msgid "Apply index(s)" msgid "Hide panel" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:636 +#: js/messages.php:642 #, fuzzy #| msgid "Show logo in left frame" msgid "Show hidden navigation tree items." msgstr "Chap ramkada logotipni ko‘rsatish" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 #, fuzzy #| msgid "Customize main frame" msgid "Unlink from main panel" msgstr "Asosiy ramkani moslashtirish" -#: js/messages.php:642 +#: js/messages.php:648 #, 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2758,129 +2765,129 @@ msgstr "" "sanada chiqarilgan." #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 #, fuzzy #| msgid "Check for latest version" msgid ", latest stable version:" msgstr "Oxirgi versiyani tekshirish" -#: js/messages.php:651 +#: js/messages.php:657 #, fuzzy #| msgid "Go to database" msgid "up to date" msgstr "Ushbu bazaga o‘tish" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 #, fuzzy #| msgid "Create version" msgid "Create view" msgstr "Vеrsiyasini tuzish" -#: js/messages.php:656 +#: js/messages.php:662 #, fuzzy #| msgid "Server port" msgid "Send error report" msgstr "Server porti" -#: js/messages.php:657 +#: js/messages.php:663 #, fuzzy #| msgid "Server port" msgid "Submit error report" msgstr "Server porti" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 #, fuzzy #| msgid "Other core settings" msgid "Change report settings" msgstr "Boshqa sozlanishlar" -#: js/messages.php:662 +#: js/messages.php:668 #, fuzzy #| msgid "Show open tables" msgid "Show report details" msgstr "Ochiq jadvallar ro‘yxati" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 #, fuzzy #| msgid "Ignore" msgid "Ignore All" msgstr "E`tibor bermaslik" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 #, fuzzy #| msgid "Show this query here again" msgid "Execute this query again?" msgstr "Ushbu so‘rovni qayta ko‘rsatish" -#: js/messages.php:703 +#: js/messages.php:709 #, 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:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, fuzzy, php-format msgid "%s queries executed %s times in %s seconds." msgstr "SQL so‘rovlari" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 #, fuzzy #| msgid "Table comments" msgid "Show arguments" msgstr "Jadval izohi" -#: js/messages.php:710 +#: js/messages.php:716 #, fuzzy #| msgid "SQL Query box" msgid "Hide arguments" msgstr "SQL so‘rovlari qutisi" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2889,38 +2896,38 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 #, fuzzy #| msgid "Copy database to" msgid "Copy tables to" msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Apply index(s)" msgid "Add table prefix" msgstr "Indеks(lar)ni saqlash" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table data with file" msgid "Replace table with prefix" msgstr "Jadval ma`lumotlarini fayl ma`lumotlari bilan almashtirish" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 #, fuzzy #| msgid "Previous" msgctxt "Previous month" msgid "Prev" msgstr "Orqaga" -#: js/messages.php:751 +#: js/messages.php:757 #, fuzzy #| msgid "Next" msgctxt "Next month" @@ -2928,96 +2935,96 @@ msgid "Next" msgstr "Keyingi" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 #, fuzzy #| msgid "Total" msgid "Today" msgstr "Jami" -#: js/messages.php:758 +#: js/messages.php:764 #, fuzzy #| msgid "Binary" msgid "January" msgstr "Ikkilik" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "" -#: js/messages.php:760 +#: js/messages.php:766 #, fuzzy #| msgid "Mar" msgid "March" msgstr "Mar" -#: js/messages.php:761 +#: js/messages.php:767 #, fuzzy #| msgid "Apr" msgid "April" msgstr "Apr" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "May" -#: js/messages.php:763 +#: js/messages.php:769 #, fuzzy #| msgid "Jun" msgid "June" msgstr "Iyun" -#: js/messages.php:764 +#: js/messages.php:770 #, fuzzy #| msgid "Jul" msgid "July" msgstr "Iyul" -#: js/messages.php:765 +#: js/messages.php:771 #, fuzzy #| msgid "Aug" msgid "August" msgstr "Avg" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "" -#: js/messages.php:767 +#: js/messages.php:773 #, fuzzy #| msgid "Oct" msgid "October" msgstr "Okt" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Yanv" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Fev" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Mar" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 #, fuzzy #| msgid "May" msgctxt "Short month name" @@ -3025,78 +3032,78 @@ msgid "May" msgstr "May" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Iyun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Iyul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Avg" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Sen" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Noya" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Dek" -#: js/messages.php:804 +#: js/messages.php:810 #, fuzzy #| msgid "Sun" msgid "Sunday" msgstr "Yaksh" -#: js/messages.php:805 +#: js/messages.php:811 #, fuzzy #| msgid "Mon" msgid "Monday" msgstr "Dush" -#: js/messages.php:806 +#: js/messages.php:812 #, fuzzy #| msgid "Tue" msgid "Tuesday" msgstr "Sesh" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "" -#: js/messages.php:809 +#: js/messages.php:815 #, fuzzy #| msgid "Fri" msgid "Friday" msgstr "Jum" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 #, fuzzy #| msgctxt "Short week day name" #| msgid "Sun" @@ -3104,86 +3111,86 @@ msgid "Sun" msgstr "Yaksh" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "Dush" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "Sesh" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "Chor" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "Pay" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "Jum" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "Shan" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 #, fuzzy #| msgid "Sun" msgid "Su" msgstr "Yaksh" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 #, fuzzy #| msgid "Mon" msgid "Mo" msgstr "Dush" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 #, fuzzy #| msgid "Tue" msgid "Tu" msgstr "Sesh" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 #, fuzzy #| msgid "Wed" msgid "We" msgstr "Chor" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 #, fuzzy #| msgid "Thu" msgid "Th" msgstr "Pay" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 #, fuzzy #| msgid "Fri" msgid "Fr" msgstr "Jum" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 #, fuzzy #| msgid "Sat" msgid "Sa" msgstr "Shan" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 #, fuzzy #| msgid "Wiki" msgid "Wk" @@ -3192,137 +3199,137 @@ msgstr "Viki" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 #, fuzzy #| msgid "None" msgctxt "Year suffix" msgid "none" msgstr "Yo‘q" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 #, fuzzy #| msgid "in use" msgid "Minute" msgstr "ishlatilmoqda" -#: js/messages.php:876 +#: js/messages.php:882 #, fuzzy #| msgid "per second" msgid "Second" msgstr "sekundiga" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 #, fuzzy #| msgid "Use text field" msgid "Please fix this field" msgstr "Matnmaydonini ishlatish" -#: js/messages.php:889 +#: js/messages.php:895 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid email address" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:890 +#: js/messages.php:896 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid URL" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:891 +#: js/messages.php:897 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:894 +#: js/messages.php:900 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date ( ISO )" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:896 +#: js/messages.php:902 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:899 +#: js/messages.php:905 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid credit card number" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:901 +#: js/messages.php:907 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter only digits" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:904 +#: js/messages.php:910 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter the same value again" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter at least {0} characters" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 #, 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:928 +#: js/messages.php:934 #, 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:933 +#: js/messages.php:939 #, 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:939 +#: js/messages.php:945 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid date or time" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:944 +#: js/messages.php:950 #, fuzzy #| msgid "Not a valid port number" msgid "Please enter a valid HEX input" msgstr "Noto‘g‘ri port nomeri" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -3421,8 +3428,8 @@ msgstr "so‘rov bo‘yicha" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Ma`lumotlar bazasi" @@ -4368,7 +4375,7 @@ msgstr "\"%s\" indeksi o‘chirildi." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -4424,8 +4431,8 @@ msgstr "Namoyish" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Jadval" @@ -4821,56 +4828,56 @@ msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi." msgid "Unknown table status:" msgstr "Replikatsiya serveri ahvoli haqida ma`lumot" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, fuzzy, php-format #| msgid "Source database" msgid "Source database `%s` was not found!" msgstr "Manba baza" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, fuzzy, php-format #| msgid "Theme %s not found!" msgid "Target database `%s` was not found!" msgstr "\"%s\" mavzusi topilmadi!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 #, fuzzy #| msgid "Invalid database" msgid "Invalid database:" msgstr "Noto‘g‘ri ma`lumotlar bazasi" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 #, fuzzy #| msgid "Invalid table name" msgid "Invalid table name:" msgstr "Jadval nomi noto‘g‘ri" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, fuzzy, php-format #| msgid "Error renaming table %1$s to %2$s" msgid "Failed to rename table %1$s to %2$s!" msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, fuzzy, php-format #| msgid "Table %s has been renamed to %s." msgid "Table %1$s has been renamed to %2$s." msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 #, fuzzy #| msgid "Cannot load or save configuration" msgid "Could not save table UI preferences!" msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4878,19 +4885,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Birlamchi indeks nomi \"PRIMARY\" bo‘lishi kerak!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Indeksni \"PRIMARY\"ga qayta nomlab bo‘lmadi!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Indeks qismlari belgilanmagan!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -12478,63 +12485,63 @@ msgid "Formats text as XML with syntax highlighting." msgstr "" "Matnni sintaksisi rang bilan belgilangan SQL so‘rov sifatida formatlaydi." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Xatolik: Bog‘liqlik allaqachon mavjud." -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Relational features are disabled!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "Ichki aloqa o‘rnatildi" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "Tashqi kalitga (FOREIGN KEY) aloqa o‘rnatildi" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "Xatolik: Bog‘liqlik o‘rnatilmadi." -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -12684,18 +12691,18 @@ msgstr "" "Yangilangan konfiguratsiya fayli ishga tushishi uchun, phpMyAdmin dasturidan " "chiqib, qayta kiring." -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "tavsif mavjud emas" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -12706,13 +12713,13 @@ msgstr "" "pmadb usuli ishlatilmoqda, lekin phpMyAdmin konfiguratsion faylida " "foydalanuvchi belgilanmagan" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "" #| "Empty phpMyAdmin control user while using phpMyAdmin configuration storage" @@ -13503,27 +13510,27 @@ msgstr "Muolajalar" #: libraries/rte/rte_words.lib.php:32 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." #: libraries/rte/rte_words.lib.php:43 @@ -13553,13 +13560,13 @@ msgstr "Triggerlar" #: libraries/rte/rte_words.lib.php:54 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" #: libraries/rte/rte_words.lib.php:56 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." #: libraries/rte/rte_words.lib.php:57 @@ -13589,13 +13596,13 @@ msgstr "Hodisa" #: libraries/rte/rte_words.lib.php:68 #, fuzzy #| msgid "You don't have sufficient privileges to be here right now!" -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Ushbu sahifaga kirish uchun Sizda yetarli huquq mavjud emas!" #: libraries/rte/rte_words.lib.php:70 #, fuzzy, php-format #| msgid "No tables found in database." -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas." #: libraries/rte/rte_words.lib.php:71 @@ -15558,7 +15565,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -15679,7 +15686,7 @@ msgstr "Jadval boshiga" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -15700,6 +15707,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "Jadval boshiga" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -17442,35 +17455,42 @@ msgstr "Amallar" msgid "Constraint properties" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 #, fuzzy #| msgid "Foreign key limit" msgid "Foreign key constraint" msgstr "Tashqi kalit chegaralari" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "Cheklovlar qo‘shish" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 #, fuzzy #| msgid "Internal relations" msgid "Internal relation" msgstr "Ichki aloqalar" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." @@ -17478,7 +17498,7 @@ msgstr "" "Agar tashqi kalit (FOREIGN KEY) orqali aloqa mavjud bo‘lsa, ichki aloqa " "o‘rnatish shart emas." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose field to display" msgid "Choose column to display:" @@ -17490,13 +17510,13 @@ msgstr "Ko‘rsatiladigan maydonni tanlash" msgid "Foreign key constraint %s has been dropped" msgstr "Tashqi kalit chegaralari" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 #, fuzzy #| msgid "Constraints for table" msgid "Constraint name" msgstr "Jadvallarning tashqi kalitida cheklovlar" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column(s)" msgid "+ Add column" diff --git a/po/vi.po b/po/vi.po index 5c386c48da..754eb5e917 100644 --- a/po/vi.po +++ b/po/vi.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-10 19:30+0000\n" "Last-Translator: Michal Čihař \n" "Language-Team: Vietnamese - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2270,26 +2277,26 @@ msgstr "" "
- Ctrl+Click hay Alt+Click (Mac: Shift+Option+Click) để xóa cột khỏi " "mệnh đề ORDER BY" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "Bấm chuột để đánh/bỏ đánh dấu" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "Bấm đúp chuột để sao chép tên cột" -#: js/messages.php:577 +#: js/messages.php:583 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:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "Hiện tất" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2298,12 +2305,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:585 +#: js/messages.php:591 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:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." @@ -2311,103 +2318,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:590 +#: js/messages.php:596 msgid "Original length" msgstr "Chiều dài gốc" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "thôi" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "Bị hủy bỏ" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "Thành công" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "Trạng thái nhập vào" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "Thả tập tin vào đây" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "Hãy chọn cơ sở dữ liệu trước" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: 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:609 +#: js/messages.php:615 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:614 +#: js/messages.php:620 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:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "Nhảy đến liên kết:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "Chép tên cột." -#: js/messages.php:623 +#: js/messages.php:629 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:626 +#: js/messages.php:632 msgid "Generate password" msgstr "Tạo mật khẩu" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "Tạo" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "Thêm" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "Hiển thị bảng điều khiển" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "Ẩn bảng điều khiển" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "Hiển thị các mục ẩn cây điều hướng." -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 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:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 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:642 +#: js/messages.php:648 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:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2417,49 +2424,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:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ", phiên bản ổn định mới nhất:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "đã cập nhật" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "Tạo view" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "Gửi báo cáo lỗi" -#: js/messages.php:659 +#: js/messages.php:665 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:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "Thay đổi các cài đặt báo cáo" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "Hiển thị chi tiết báo cáo" -#: js/messages.php:665 +#: js/messages.php:671 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:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2468,59 +2475,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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 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:677 +#: js/messages.php:683 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:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "Bỏ qua tất" -#: js/messages.php:691 +#: js/messages.php:697 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:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "Thực hiện truy vấn này lần nữa?" -#: js/messages.php:703 +#: js/messages.php:709 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:705 +#: js/messages.php:711 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:707 +#: js/messages.php:713 #, 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:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "đã chuyển qua %s tham số" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "Hiển thị các đối số" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "Ẩn các đối số" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "Thời gian cần:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2529,351 +2536,351 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "Chép các bảng sang" -#: js/messages.php:715 +#: js/messages.php:721 #, fuzzy #| msgid "Add table prefix:" msgid "Add table prefix" msgstr "Thêm tiền tố cho bảng:" -#: js/messages.php:716 +#: js/messages.php:722 #, fuzzy #| msgid "Replace table prefix" msgid "Replace table with prefix" msgstr "Thêm tiền tố cho bảng" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 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:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "Trước" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "Tiếp theo" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "Hôm nay" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "Tháng giêng" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "Tháng hai" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "Tháng ba" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "Tháng tư" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "Tháng năm" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "Tháng sáu" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "Tháng bảy" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "Tháng tám" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "Tháng chín" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "Tháng mười" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "Tháng mười một" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "Tháng mười hai" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "Th1" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "Th2" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "Th3" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "Th4" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "Th5" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "Th6" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "Th7" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "Th8" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "Th9" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "Th10" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "Th12" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "Chủ nhật" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "Thứ hai" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "Thứ ba" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "Thứ tư" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "Thứ năm" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "Thứ sáu" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "Thứ bảy" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "CN" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "T2" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "T3" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "T4" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "T5" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "T6" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "T7" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "CN" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "T2" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "T3" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "T4" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "T5" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "T6" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "T7" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "Tuần" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "không" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "Giờ" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "Phút" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "Giây" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "Trường này là bắt buộc" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "Vui lòng sửa trường này" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "Vui lòng nhập một địa chỉ thư hợp lệ" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "Vui lòng nhập một địa chỉ URL hợp lệ" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "Vui lòng nhập ngày tháng hợp lệ" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "Vui lòng nhập ngày tháng hợp lệ ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "Vui lòng nhập con số hợp lệ" -#: js/messages.php:899 +#: js/messages.php:905 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:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "Vui lòng chỉ nhập số" -#: js/messages.php:904 +#: js/messages.php:910 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:908 +#: js/messages.php:914 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:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "Vui lòng nhập vào ít nhất {0} ký tự" -#: js/messages.php:918 +#: js/messages.php:924 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:923 +#: js/messages.php:929 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:928 +#: js/messages.php:934 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:933 +#: js/messages.php:939 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:939 +#: js/messages.php:945 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:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "Vui lòng nhập vào một HEX hợp lệ" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2970,8 +2977,8 @@ msgstr "Truy vấn lại" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "Cơ sở dữ liệu" @@ -3765,7 +3772,7 @@ msgstr "Chỉ mục %s đã được xóa bỏ." #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3825,8 +3832,8 @@ msgstr "View" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "Bảng" @@ -4182,39 +4189,39 @@ msgstr "Máy chủ MySQL này không hỗ trợ bộ máy lưu trữ %s." msgid "Unknown table status:" msgstr "Không hiểu các trạng thái bảng:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu nguồn “%s“!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "Không tìm thấy cơ sở dữ liệu đích “%s“!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "Cơ sở dữ liệu không hợp lệ:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "Tên bảng không hợp lệ" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "Gặp lỗi khi đổi tên bảng %1$s thành %2$s" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "Bảng %1$s đã được đổi tên thành %2$s." -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "Không thể ghi lại bảng mới dùng" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4223,7 +4230,7 @@ msgstr "" "Gặp lỗi khi dọn dẹp tùy thích bảng UI (xem $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4231,19 +4238,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "Tên của khóa chính phải là \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "Không thể đổi tên chỉ mục thành PRIMARY!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "Chưa định nghĩa bộ phận chỉ mục nào!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "Gặp lỗi khi tạo khóa ngoại trên %1$s (kiểm tra lại kiểu dữ liệu)" @@ -10596,47 +10603,47 @@ msgstr "Định dạng văn bản là JSON có tô sáng cú pháp." msgid "Formats text as XML with syntax highlighting." msgstr "Định dạng văn bản là XML có tô sáng cú pháp." -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "Lỗi: quan hệ đã sẵn có" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "Quan hệ KHÓA NGOẠI đã được thêm vào." -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "Lỗi: Quan hệ KHÓA NGOẠI không thể được thêm vào!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "Lỗi: Thiếu chỉ mục trên các cột." -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "Mối quan hệ profile không tìm thấy" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "Quan hệ nội tại đã được thêm." -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "Lỗi: Quan hệ nội bộ không thể được thêm vào!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "Quan hệ KHÓA NGOẠI đã được xóa bỏ." -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "Lỗi: Quan hệ KHÓA NGOẠI không thể xóa bỏ được!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "Lỗi: Quan hệ nội bộ không thể xóa bỏ được!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "Quan hệ bên trong đã bị gỡ bỏ." @@ -10752,31 +10759,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "không có mô tả" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11432,26 +11439,29 @@ msgid "routine" msgstr "thủ tục" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "Bạn không có đủ thẩm quyền cần thiết để tạo một thủ tục" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "Không có thủ tục nào mang tên %1$s ở trong cơ sở dữ liệu %2$s" #: libraries/rte/rte_words.lib.php:43 @@ -11472,12 +11482,15 @@ msgid "trigger" msgstr "bẫy" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "Bạn không có đủ thẩm quyền cần thiết để tạo một bẫy" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "Không có bẫy nào mang tên %1$s ở trong cơ sở dữ liệu %2$s" #: libraries/rte/rte_words.lib.php:57 @@ -11498,12 +11511,15 @@ msgid "event" msgstr "sự kiện" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "Bạn không có đủ thẩm quyền cần thiết để tạo một sự kiện" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "Không có sự kiện nào mang tên %1$s ở trong cơ sở dữ liệu %2$s" #: libraries/rte/rte_words.lib.php:71 @@ -13153,7 +13169,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13256,7 +13272,7 @@ msgstr "Gặp phần đầu mệnh đề không cần." msgid "Unrecognized statement type." msgstr "Không thừa nhận kiểu mệnh đề." -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "Chưa có giao địch nào đã bắt đầu trước đây." @@ -13277,6 +13293,12 @@ msgstr "Kiểu của mệnh đề này đã được phân tích trước đây. msgid "Unrecognized keyword." msgstr "Không nhận ra từ khóa." +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "Gặp phần đầu mệnh đề không cần." + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "Cần tên của thực thể." @@ -14749,38 +14771,45 @@ msgstr "Hành động" msgid "Constraint properties" msgstr "Thuộc tính ràng buộc" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" "Chỉ hiển thị các cột có chỉ mục. Bạn có thể định nghĩa một chỉ mục ở bên " "dưới." -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "Ràng buộc khóa ngoại" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "+ Thêm ràng buộc" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "Các quan hệ nội tại" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "Quan hệ nội tại" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" "Quan hệ nội tại là không cần thiết khi một quan hệ KHÓA NGOẠI đã sẵn có." -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "Chọn cột bạn muốn hiển thị:" @@ -14789,11 +14818,11 @@ msgstr "Chọn cột bạn muốn hiển thị:" msgid "Foreign key constraint %s has been dropped" msgstr "Ràng buộc khóa ngoại %s đã bị xóa bỏ" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "Tên ràng buộc" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ Thêm cột" diff --git a/po/vls.po b/po/vls.po index acbb84f22b..3c943a1304 100644 --- a/po/vls.po +++ b/po/vls.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2014-12-23 23:39+0200\n" "Last-Translator: Robin van der Vliet \n" "Language-Team: West Flemish - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " "ORDER BY clause" msgstr "" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "" -#: js/messages.php:581 +#: js/messages.php:587 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:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2319,105 +2326,105 @@ msgid "" msgstr "" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr "" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "" -#: js/messages.php:669 +#: js/messages.php:675 #, 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:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2433,347 @@ msgid "" "Safari, such problem is commonly caused by \"Private Mode Browsing\"." msgstr "" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "januoari" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "februoari" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "moarte" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "april" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "meie" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "juni" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "juli" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "ogustus" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "september" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "oktober" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "november" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "december" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "jan" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "feb" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "mrt" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "apr" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "mei" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "jun" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "jul" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "ogu" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "sep" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "okt" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "nov" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "dec" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "zundag" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "moandag" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "diesndag" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "woensdag" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "dunderdag" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "vrydag" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "zoaterdag" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "zu" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "mo" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "di" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "wo" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "du" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "vr" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "zo" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "mo" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "di" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "wo" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "du" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "vr" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "zo" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-month-year" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2860,8 +2867,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "" @@ -3648,7 +3655,7 @@ msgstr "" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3704,8 +3711,8 @@ msgstr "" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "" @@ -4065,46 +4072,46 @@ msgstr "" msgid "Unknown table status:" msgstr "" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4112,19 +4119,19 @@ msgid "" "changed." msgstr "" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "" @@ -10243,47 +10250,47 @@ msgstr "" msgid "Formats text as XML with syntax highlighting." msgstr "" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "" @@ -10399,31 +10406,31 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " "phpMyAdmin configuration storage there." msgstr "" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " "configuration storage there." msgstr "" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "" @@ -11065,26 +11072,26 @@ msgid "routine" msgstr "" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 #, php-format -msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:43 @@ -11105,12 +11112,12 @@ msgid "trigger" msgstr "" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "" #: libraries/rte/rte_words.lib.php:56 #, php-format -msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:57 @@ -11131,12 +11138,12 @@ msgid "event" msgstr "" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "" #: libraries/rte/rte_words.lib.php:70 #, php-format -msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "" #: libraries/rte/rte_words.lib.php:71 @@ -12751,7 +12758,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -12851,7 +12858,7 @@ msgstr "" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -12872,6 +12879,10 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +msgid "Unexpected ordering of clauses." +msgstr "" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "" @@ -14301,35 +14312,42 @@ msgstr "" msgid "Constraint properties" msgstr "" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "" @@ -14338,11 +14356,11 @@ msgstr "" msgid "Foreign key constraint %s has been dropped" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "" diff --git a/po/zh_CN.po b/po/zh_CN.po index 82ddff6fb9..a73f5abd45 100644 --- a/po/zh_CN.po +++ b/po/zh_CN.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-10-02 09:16+0000\n" "Last-Translator: an wei \n" "Language-Team: Chinese (China) - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2225,26 +2232,26 @@ msgstr "" "
使用 Ctrl+Click 或者 Alt+Click (Mac:Shift+Option+Click )即可将列从 " "ORDER BY 语句中移除" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "点击以标记/取消标记。" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "双击以复制字段名。" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "点击下箭头
以设置显示的字段。" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "显示全部" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2252,109 +2259,109 @@ msgstr "" "该表没有唯一字段。在保存后单元格编辑、多选、编辑、复制和删除等功能可能无法正" "常使用。" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "请输入一个有效的十六进制字符串。只有0-9和A-F为有效字符。" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您真的想要查看所有的行吗?若表过大可能会导致浏览器崩溃。" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "原始长度" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "取消" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "已取消" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "成功" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "导入状态" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "将文件拖动至此" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "先选择数据库" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "打印" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以直接双击大部分
单元格以修改其值。" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接点击大部分
单元格以修改其值。" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "前往:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "复制字段名。" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "在字段名上右键以复制到剪贴板。" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "生成密码" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "生成" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "更多" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "显示导航面板" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "隐藏导航面板" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "显示隐藏的导航树节点。" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "与主面板链接" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "从主面板取消链接" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "没有在历史记录中找到所请求的页面,页面可能已过期。" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2362,47 +2369,47 @@ msgid "" msgstr "phpMyAdmin 有新版本了,请您考虑升级。最新的版本是 %s,于 %s 发布。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ",最新稳定版本:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "已更新" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "新建视图" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "发送错误报告" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "提交错误报告" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "发生致命JavaScript错误。是否发送错误报告?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "更改报告设置" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "显示报告详细信息" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "由于PHP设置的执行限制时间过低,您的导入未能完成!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2411,58 +2418,58 @@ msgstr "" "警告:当前表单包含的字段多于 %d,受限于 PHP 中 max_input_vars 值的配置,该次" "提交有可能忽略其中一部分。" -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "在服务上检测到错误!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "请查看此窗口的底部。" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "忽略全部" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "正在提交您的设置,请耐心等待。" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "再次执行该查询?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "您真的要删除该书签吗?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "获取SQL调试信息时出错。" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s查询已执行%s次,耗时%s秒。" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "%s 个参数已传递" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "显示注释" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "隐藏注释" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "用时:" -#: js/messages.php:712 +#: js/messages.php:718 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,347 +2483,347 @@ msgstr "" "线网站数据”可能会解决这个问题。对于Safari浏览器,这个问题通常是由于“隐私浏览" "模式”导致的。" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "复制数据表到" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "添加表前缀" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "替换表前缀" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "复制表为新前缀" -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "上个月" -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "下个月" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "今天" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "一月" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "二月" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "三月" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "四月" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "五月" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "六月" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "七月" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "八月" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "九月" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "十月" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "十一月" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "十二月" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "星期日" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "星期一" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "星期四" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "星期五" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "周日" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "周一" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "周二" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "周三" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "周四" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "周五" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "周六" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "周" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "年" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "时" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "分" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "秒" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "此字段为必须字段" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "请修改这个字段" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "请输入有效的Email地址" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "请输入一个有效的链接地址" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "请输入有效的日期" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "请输入有效的日期(ISO标准格式)" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "请输入一个有效的数字" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "请输入一个有效的银行卡号码" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "请输入纯数字" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "请重输一遍" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "请输入不超过{0}位字符" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "请输入大于{0}位字符" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "请输入一个 {0} 和 {1} 字符长度之间的值" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "请输入 {0} 和 {1}之间的一个值" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "请输入一个小于或等于 {0} 的值" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "请输入一个大于或等于 {0} 的值" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "请输入有效的日期或时间" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "请输入一个有效的HEX值" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2910,8 +2917,8 @@ msgstr "重新查询" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "数据库" @@ -3697,7 +3704,7 @@ msgstr "已删除索引 %s。" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3753,8 +3760,8 @@ msgstr "视图" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "表" @@ -4109,46 +4116,46 @@ msgstr "该 MySQL 服务器不支持 %s 存储引擎。" msgid "Unknown table status:" msgstr "未知表状态:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "未找到源数据库 `%s`!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "未找到目标数据库 `%s`!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "无效的数据库:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "无效的数据表名:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "将表 %1$s 改名为 %2$s 失败!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "已将表 %1$s 改名为 %2$s。" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "无法保存表界面设置!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" msgstr "清除表界面设置失败(参见 $cfg['Servers'][$i]['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4157,19 +4164,19 @@ msgid "" msgstr "" "无法保存用户界面属性“%s”。修改将在刷新本页后丢失。请检查表结构是否已修改。" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主键的名称必须称为 “PRIMARY”!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "无法将索引改为主键 (PRIMARY) !" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "没有定义的索引部分!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "在 %1$s 创建外键时发生错误 (检查数据类型)" @@ -10659,61 +10666,61 @@ msgstr "将文本以 SQL 语法高亮显示。" msgid "Formats text as XML with syntax highlighting." msgstr "将文本以 SQL 语法高亮显示。" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "错误:关系已存在。" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been added." msgstr "已添加外键关联" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be added!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "错误:关系功能被禁用!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been added." msgstr "已添加内联关系" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be added!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 #, fuzzy #| msgid "FOREIGN KEY relation added" msgid "FOREIGN KEY relation has been removed." msgstr "已添加外键关联" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 #, fuzzy #| msgid "Error: Relation not added." msgid "Error: Internal relation could not be removed!" msgstr "错误:关系未添加。" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 #, fuzzy #| msgid "Internal relation added" msgid "Internal relation has been removed." @@ -10852,11 +10859,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "请重新登录 phpMyAdmin 以加载新配置并使其生效。" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "无说明" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10865,7 +10872,7 @@ msgstr "" "您没有权限建立名为“phpmyadmin”的数据库。您可能需要到任一数据库的“操作”页面设" "置 phpMyAdmin的储存位置 。" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" @@ -10873,14 +10880,14 @@ msgid "" "configuration storage there." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "丢失 phpMyAdmin 高级功能数据表" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, fuzzy, php-format #| msgid "Missing phpMyAdmin configuration storage tables" msgid "%sCreate%s missing phpMyAdmin configuration storage tables." @@ -11590,26 +11597,29 @@ msgid "routine" msgstr "程序" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "你不具有创建程序的必要权限" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "在数据库 %2$s 中找不到名为 %1$s 的程序" #: libraries/rte/rte_words.lib.php:43 @@ -11630,12 +11640,15 @@ msgid "trigger" msgstr "触发器" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "你不具有创建触发器的必要权限" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "在数据库 %2$s 中找不到名为 %1$s 的触发器" #: libraries/rte/rte_words.lib.php:57 @@ -11656,12 +11669,15 @@ msgid "event" msgstr "事件" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "你不具有创建事件的必要权限" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "在数据库 %2$s 中找不到名为 %1$s 的事件" #: libraries/rte/rte_words.lib.php:71 @@ -13433,7 +13449,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13555,7 +13571,7 @@ msgstr "于表开头" msgid "Unrecognized statement type." msgstr "" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "" @@ -13578,6 +13594,12 @@ msgstr "" msgid "Unrecognized keyword." msgstr "" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "At Beginning of Table" +msgid "Unexpected ordering of clauses." +msgstr "于表开头" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 #, fuzzy #| msgid "The number of tables that are open." @@ -15192,37 +15214,44 @@ msgstr "操作" msgid "Constraint properties" msgstr "限制表" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "外键约束" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 #, fuzzy #| msgid "Add constraints" msgid "+ Add constraint" msgstr "添加约束" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "内联" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "内联" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "不需要一个和外键关系一致的内联关系。" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 #, fuzzy #| msgid "Choose column to display" msgid "Choose column to display:" @@ -15234,11 +15263,11 @@ msgstr "选择要显示的字段" msgid "Foreign key constraint %s has been dropped" msgstr "外键约束" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "限制名称" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 #, fuzzy #| msgid "Add column" msgid "+ Add column" diff --git a/po/zh_TW.po b/po/zh_TW.po index b506353ec0..f93a5cf397 100644 --- a/po/zh_TW.po +++ b/po/zh_TW.po @@ -3,7 +3,7 @@ msgid "" msgstr "" "Project-Id-Version: phpMyAdmin 4.6.5-dev\n" "Report-Msgid-Bugs-To: translators@phpmyadmin.net\n" -"POT-Creation-Date: 2016-10-25 11:13+0200\n" +"POT-Creation-Date: 2016-11-10 09:39+0100\n" "PO-Revision-Date: 2016-06-24 00:59+0000\n" "Last-Translator: Peter Chen \n" "Language-Team: Chinese (Taiwan) - Ctrl+Click or Alt+Click (Mac: Shift+Option+Click) to remove column from " @@ -2233,26 +2240,26 @@ msgstr "" "鼠點選 或 Alt+滑鼠點選 (Mac: Shift+Option+滑鼠點選) 來從 ORDER BY 子句中移除" "欄位" -#: js/messages.php:574 +#: js/messages.php:580 msgid "Click to mark/unmark." msgstr "點此標記或取消標記。" -#: js/messages.php:575 +#: js/messages.php:581 msgid "Double-click to copy column name." msgstr "雙擊點選以複製欄位名稱。" -#: js/messages.php:577 +#: js/messages.php:583 msgid "Click the drop-down arrow
to toggle column's visibility." msgstr "點選下拉箭頭
以切換欄位的顯示程度。" -#: js/messages.php:579 libraries/DisplayResults.php:1034 +#: js/messages.php:585 libraries/DisplayResults.php:1034 #: libraries/browse_foreigners.lib.php:287 #: libraries/browse_foreigners.lib.php:340 #: libraries/server_privileges.lib.php:3890 msgid "Show all" msgstr "全部顯示" -#: js/messages.php:581 +#: js/messages.php:587 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." @@ -2260,109 +2267,109 @@ msgstr "" "此資料表沒有唯一欄位用來辦示資料。 有關資料表修改、複製、刪除的功能可能會無法" "儲存。" -#: js/messages.php:585 +#: js/messages.php:591 msgid "Please enter a valid hexadecimal string. Valid characters are 0-9, A-F." msgstr "請輸入一個有效的十六進位字串。有效的字元為 0-9, A-F。" -#: js/messages.php:587 +#: js/messages.php:593 msgid "" "Do you really want to see all of the rows? For a big table this could crash " "the browser." msgstr "您確定要顯示所有資料列?使用在大型的資料表可能會造成瀏覽器當機。" -#: js/messages.php:590 +#: js/messages.php:596 msgid "Original length" msgstr "原始長度" -#: js/messages.php:593 +#: js/messages.php:599 msgid "cancel" msgstr "取消" -#: js/messages.php:594 libraries/server_status.lib.php:277 +#: js/messages.php:600 libraries/server_status.lib.php:277 msgid "Aborted" msgstr "中斷連線" -#: js/messages.php:596 +#: js/messages.php:602 msgid "Success" msgstr "成功" -#: js/messages.php:597 +#: js/messages.php:603 msgid "Import status" msgstr "匯入狀態" -#: js/messages.php:598 libraries/navigation/Navigation.php:111 +#: js/messages.php:604 libraries/navigation/Navigation.php:111 msgid "Drop files here" msgstr "將檔案拖曳至此處" -#: js/messages.php:599 +#: js/messages.php:605 msgid "Select database first" msgstr "請先選擇資料庫" -#: js/messages.php:602 libraries/DisplayResults.php:5037 +#: js/messages.php:608 libraries/DisplayResults.php:5037 #: libraries/Util.php:4233 #: templates/database/structure/print_view_data_dictionary_link.phtml:3 #: templates/table/structure/optional_action_links.phtml:6 msgid "Print" msgstr "列印" -#: js/messages.php:609 +#: js/messages.php:615 msgid "You can also edit most values
by double-clicking directly on them." msgstr "您可以點兩下以選表格內容
直接做編輯修改。" -#: js/messages.php:614 +#: js/messages.php:620 msgid "You can also edit most values
by clicking directly on them." msgstr "您可以直接點選數值
以進行編輯修改。" -#: js/messages.php:620 +#: js/messages.php:626 msgid "Go to link:" msgstr "前往此連結:" -#: js/messages.php:621 +#: js/messages.php:627 msgid "Copy column name." msgstr "複製欄位名稱。" -#: js/messages.php:623 +#: js/messages.php:629 msgid "Right-click the column name to copy it to your clipboard." msgstr "點選右鍵將欄位名稱複製到您的剪貼簿。" -#: js/messages.php:626 +#: js/messages.php:632 msgid "Generate password" msgstr "產生密碼" -#: js/messages.php:627 libraries/replication_gui.lib.php:883 +#: js/messages.php:633 libraries/replication_gui.lib.php:883 msgid "Generate" msgstr "產生" -#: js/messages.php:631 +#: js/messages.php:637 msgid "More" msgstr "更多" -#: js/messages.php:634 +#: js/messages.php:640 msgid "Show panel" msgstr "顯示面板" -#: js/messages.php:635 +#: js/messages.php:641 msgid "Hide panel" msgstr "隱藏面板" -#: js/messages.php:636 +#: js/messages.php:642 msgid "Show hidden navigation tree items." msgstr "顯示隱藏的導覽樹項目。" -#: js/messages.php:637 libraries/config/messages.inc.php:479 +#: js/messages.php:643 libraries/config/messages.inc.php:479 #: libraries/navigation/NavigationTree.php:1434 msgid "Link with main panel" msgstr "連結主面板" -#: js/messages.php:638 libraries/navigation/NavigationTree.php:1437 +#: js/messages.php:644 libraries/navigation/NavigationTree.php:1437 msgid "Unlink from main panel" msgstr "取消連結主面板" -#: js/messages.php:642 +#: js/messages.php:648 msgid "The requested page was not found in the history, it may have expired." msgstr "已無歷史記錄頁面或頁面已經逾期。" -#: js/messages.php:646 setup/lib/index.lib.php:169 +#: js/messages.php:652 setup/lib/index.lib.php:169 #, php-format msgid "" "A newer version of phpMyAdmin is available and you should consider " @@ -2371,47 +2378,47 @@ msgstr "" "新的 phpMyAdmin 已經發佈,請考慮升級至最新的版本(版本 %s,於 %s 發佈)。" #. l10n: Latest available phpMyAdmin version -#: js/messages.php:650 +#: js/messages.php:656 msgid ", latest stable version:" msgstr ",最新的穩定版:" -#: js/messages.php:651 +#: js/messages.php:657 msgid "up to date" msgstr "最新" -#: js/messages.php:653 libraries/DisplayResults.php:4968 view_create.php:200 +#: js/messages.php:659 libraries/DisplayResults.php:4968 view_create.php:200 msgid "Create view" msgstr "新增檢視表" -#: js/messages.php:656 +#: js/messages.php:662 msgid "Send error report" msgstr "傳送錯誤報告" -#: js/messages.php:657 +#: js/messages.php:663 msgid "Submit error report" msgstr "送出錯誤報告" -#: js/messages.php:659 +#: js/messages.php:665 msgid "" "A fatal JavaScript error has occurred. Would you like to send an error " "report?" msgstr "發生 JavaScript 嚴重錯誤,您是否要回報錯誤報告?" -#: js/messages.php:661 +#: js/messages.php:667 msgid "Change report settings" msgstr "更改報告設定" -#: js/messages.php:662 +#: js/messages.php:668 msgid "Show report details" msgstr "顯示報告詳細資訊" -#: js/messages.php:665 +#: js/messages.php:671 msgid "" "Your export is incomplete, due to a low execution time limit at the PHP " "level!" msgstr "因 PHP 執行期時間限制太短,您的資料未完成匯出動作!" -#: js/messages.php:669 +#: js/messages.php:675 #, php-format msgid "" "Warning: a form on this page has more than %d fields. On submission, some of " @@ -2420,58 +2427,58 @@ msgstr "" "警告: 此頁面中的表單超過 %d 個欄位,因超出 PHP 中 max_input_vars 設定值的限" "制,在送出時可能會忽略部份欄位。" -#: js/messages.php:675 js/messages.php:688 +#: js/messages.php:681 js/messages.php:694 msgid "Some errors have been detected on the server!" msgstr "已偵測到伺服器上發生部份錯誤!" -#: js/messages.php:677 +#: js/messages.php:683 msgid "Please look at the bottom of this window." msgstr "請瀏覽此視窗的底部。" -#: js/messages.php:683 libraries/ErrorHandler.php:367 +#: js/messages.php:689 libraries/ErrorHandler.php:367 msgid "Ignore All" msgstr "全部略過" -#: js/messages.php:691 +#: js/messages.php:697 msgid "" "As per your settings, they are being submitted currently, please be patient." msgstr "根據您的設定,它們正被提交,請耐心等候。" -#: js/messages.php:701 +#: js/messages.php:707 msgid "Execute this query again?" msgstr "再執行此查詢一次?" -#: js/messages.php:703 +#: js/messages.php:709 msgid "Do you really want to delete this bookmark?" msgstr "您真的要刪除此書籤?" -#: js/messages.php:705 +#: js/messages.php:711 msgid "Some error occurred while getting SQL debug info." msgstr "取得 SQL 除錯資訊時發生一些錯誤。" -#: js/messages.php:707 +#: js/messages.php:713 #, php-format msgid "%s queries executed %s times in %s seconds." msgstr "%s 筆查詢已執行 %s 次,使用 %s 秒。" -#: js/messages.php:708 +#: js/messages.php:714 #, php-format msgid "%s argument(s) passed" msgstr "已傳入 %s 個參數" -#: js/messages.php:709 +#: js/messages.php:715 msgid "Show arguments" msgstr "顯示參數" -#: js/messages.php:710 +#: js/messages.php:716 msgid "Hide arguments" msgstr "隱藏參數" -#: js/messages.php:711 libraries/Console.php:306 +#: js/messages.php:717 libraries/Console.php:306 msgid "Time taken:" msgstr "使用時間:" -#: js/messages.php:712 +#: js/messages.php:718 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 " @@ -2484,349 +2491,349 @@ msgstr "" "題,您可清空您的 \"離線網站資料\" 來解決。 在 Safari 通常是使用 \"隱私模式瀏" "覽\"。" -#: js/messages.php:714 +#: js/messages.php:720 msgid "Copy tables to" msgstr "複製資料表到" -#: js/messages.php:715 +#: js/messages.php:721 msgid "Add table prefix" msgstr "增加資料表字首" -#: js/messages.php:716 +#: js/messages.php:722 msgid "Replace table with prefix" msgstr "含字首取代資料表" -#: js/messages.php:717 templates/database/structure/check_all_tables.phtml:29 +#: js/messages.php:723 templates/database/structure/check_all_tables.phtml:29 msgid "Copy table with prefix" msgstr "含字首複製資料表" # 這應該是使用於選擇日期的月曆 -#: js/messages.php:746 +#: js/messages.php:752 msgctxt "Previous month" msgid "Prev" msgstr "上個月" # 這應該使用於選擇日期的小月曆 -#: js/messages.php:751 +#: js/messages.php:757 msgctxt "Next month" msgid "Next" msgstr "下個月" #. l10n: Display text for current month link in calendar -#: js/messages.php:754 +#: js/messages.php:760 msgid "Today" msgstr "今天" -#: js/messages.php:758 +#: js/messages.php:764 msgid "January" msgstr "一月" -#: js/messages.php:759 +#: js/messages.php:765 msgid "February" msgstr "二月" -#: js/messages.php:760 +#: js/messages.php:766 msgid "March" msgstr "三月" -#: js/messages.php:761 +#: js/messages.php:767 msgid "April" msgstr "四月" -#: js/messages.php:762 +#: js/messages.php:768 msgid "May" msgstr "五月" -#: js/messages.php:763 +#: js/messages.php:769 msgid "June" msgstr "六月" -#: js/messages.php:764 +#: js/messages.php:770 msgid "July" msgstr "七月" -#: js/messages.php:765 +#: js/messages.php:771 msgid "August" msgstr "八月" -#: js/messages.php:766 +#: js/messages.php:772 msgid "September" msgstr "九月" -#: js/messages.php:767 +#: js/messages.php:773 msgid "October" msgstr "十月" -#: js/messages.php:768 +#: js/messages.php:774 msgid "November" msgstr "十一月" -#: js/messages.php:769 +#: js/messages.php:775 msgid "December" msgstr "十二月" #. l10n: Short month name -#: js/messages.php:776 libraries/Util.php:1665 +#: js/messages.php:782 libraries/Util.php:1665 msgid "Jan" msgstr "一月" #. l10n: Short month name -#: js/messages.php:778 libraries/Util.php:1667 +#: js/messages.php:784 libraries/Util.php:1667 msgid "Feb" msgstr "二月" #. l10n: Short month name -#: js/messages.php:780 libraries/Util.php:1669 +#: js/messages.php:786 libraries/Util.php:1669 msgid "Mar" msgstr "三月" #. l10n: Short month name -#: js/messages.php:782 libraries/Util.php:1671 +#: js/messages.php:788 libraries/Util.php:1671 msgid "Apr" msgstr "四月" #. l10n: Short month name -#: js/messages.php:784 libraries/Util.php:1673 +#: js/messages.php:790 libraries/Util.php:1673 msgctxt "Short month name" msgid "May" msgstr "五月" #. l10n: Short month name -#: js/messages.php:786 libraries/Util.php:1675 +#: js/messages.php:792 libraries/Util.php:1675 msgid "Jun" msgstr "六月" #. l10n: Short month name -#: js/messages.php:788 libraries/Util.php:1677 +#: js/messages.php:794 libraries/Util.php:1677 msgid "Jul" msgstr "七月" #. l10n: Short month name -#: js/messages.php:790 libraries/Util.php:1679 +#: js/messages.php:796 libraries/Util.php:1679 msgid "Aug" msgstr "八月" #. l10n: Short month name -#: js/messages.php:792 libraries/Util.php:1681 +#: js/messages.php:798 libraries/Util.php:1681 msgid "Sep" msgstr "九月" #. l10n: Short month name -#: js/messages.php:794 libraries/Util.php:1683 +#: js/messages.php:800 libraries/Util.php:1683 msgid "Oct" msgstr "十月" #. l10n: Short month name -#: js/messages.php:796 libraries/Util.php:1685 +#: js/messages.php:802 libraries/Util.php:1685 msgid "Nov" msgstr "十一月" #. l10n: Short month name -#: js/messages.php:798 libraries/Util.php:1687 +#: js/messages.php:804 libraries/Util.php:1687 msgid "Dec" msgstr "十二月" -#: js/messages.php:804 +#: js/messages.php:810 msgid "Sunday" msgstr "星期日" -#: js/messages.php:805 +#: js/messages.php:811 msgid "Monday" msgstr "星期一" -#: js/messages.php:806 +#: js/messages.php:812 msgid "Tuesday" msgstr "星期二" -#: js/messages.php:807 +#: js/messages.php:813 msgid "Wednesday" msgstr "星期三" -#: js/messages.php:808 +#: js/messages.php:814 msgid "Thursday" msgstr "星期四" -#: js/messages.php:809 +#: js/messages.php:815 msgid "Friday" msgstr "星期五" -#: js/messages.php:810 +#: js/messages.php:816 msgid "Saturday" msgstr "星期六" #. l10n: Short week day name -#: js/messages.php:817 +#: js/messages.php:823 msgid "Sun" msgstr "週日" #. l10n: Short week day name -#: js/messages.php:819 libraries/Util.php:1692 +#: js/messages.php:825 libraries/Util.php:1692 msgid "Mon" msgstr "週一" #. l10n: Short week day name -#: js/messages.php:821 libraries/Util.php:1694 +#: js/messages.php:827 libraries/Util.php:1694 msgid "Tue" msgstr "週二" #. l10n: Short week day name -#: js/messages.php:823 libraries/Util.php:1696 +#: js/messages.php:829 libraries/Util.php:1696 msgid "Wed" msgstr "週三" #. l10n: Short week day name -#: js/messages.php:825 libraries/Util.php:1698 +#: js/messages.php:831 libraries/Util.php:1698 msgid "Thu" msgstr "週四" #. l10n: Short week day name -#: js/messages.php:827 libraries/Util.php:1700 +#: js/messages.php:833 libraries/Util.php:1700 msgid "Fri" msgstr "週五" #. l10n: Short week day name -#: js/messages.php:829 libraries/Util.php:1702 +#: js/messages.php:835 libraries/Util.php:1702 msgid "Sat" msgstr "週六" #. l10n: Minimal week day name -#: js/messages.php:836 +#: js/messages.php:842 msgid "Su" msgstr "日" #. l10n: Minimal week day name -#: js/messages.php:838 +#: js/messages.php:844 msgid "Mo" msgstr "一" #. l10n: Minimal week day name -#: js/messages.php:840 +#: js/messages.php:846 msgid "Tu" msgstr "二" #. l10n: Minimal week day name -#: js/messages.php:842 +#: js/messages.php:848 msgid "We" msgstr "三" #. l10n: Minimal week day name -#: js/messages.php:844 +#: js/messages.php:850 msgid "Th" msgstr "四" #. l10n: Minimal week day name -#: js/messages.php:846 +#: js/messages.php:852 msgid "Fr" msgstr "五" #. l10n: Minimal week day name -#: js/messages.php:848 +#: js/messages.php:854 msgid "Sa" msgstr "六" #. l10n: Column header for week of the year in calendar -#: js/messages.php:852 +#: js/messages.php:858 msgid "Wk" msgstr "週" #. l10n: Month-year order for calendar, use either "calendar-month-year" #. * or "calendar-year-month". #. -#: js/messages.php:859 +#: js/messages.php:865 msgid "calendar-month-year" msgstr "calendar-year-month" #. l10n: Year suffix for calendar, "none" is empty. -#: js/messages.php:862 +#: js/messages.php:868 msgctxt "Year suffix" msgid "none" msgstr "none" -#: js/messages.php:874 +#: js/messages.php:880 msgid "Hour" msgstr "時" -#: js/messages.php:875 +#: js/messages.php:881 msgid "Minute" msgstr "分" -#: js/messages.php:876 +#: js/messages.php:882 msgid "Second" msgstr "秒" -#: js/messages.php:887 +#: js/messages.php:893 msgid "This field is required" msgstr "此欄位為必填" -#: js/messages.php:888 +#: js/messages.php:894 msgid "Please fix this field" msgstr "請修正此欄位" -#: js/messages.php:889 +#: js/messages.php:895 msgid "Please enter a valid email address" msgstr "請輸入一個有效的電子郵件位址" -#: js/messages.php:890 +#: js/messages.php:896 msgid "Please enter a valid URL" msgstr "請輸入一個有效的 URL" -#: js/messages.php:891 +#: js/messages.php:897 msgid "Please enter a valid date" msgstr "請輸入一個有效的日期" -#: js/messages.php:894 +#: js/messages.php:900 msgid "Please enter a valid date ( ISO )" msgstr "請輸入一個有效的日期 ( ISO )" -#: js/messages.php:896 +#: js/messages.php:902 msgid "Please enter a valid number" msgstr "請輸入一個有效的數字" -#: js/messages.php:899 +#: js/messages.php:905 msgid "Please enter a valid credit card number" msgstr "請輸入一個有效的信用卡號" -#: js/messages.php:901 +#: js/messages.php:907 msgid "Please enter only digits" msgstr "請輸入數字" -#: js/messages.php:904 +#: js/messages.php:910 msgid "Please enter the same value again" msgstr "請再輸入一次" -#: js/messages.php:908 +#: js/messages.php:914 msgid "Please enter no more than {0} characters" msgstr "請輸入不超過 {0} 個字元" -#: js/messages.php:913 +#: js/messages.php:919 msgid "Please enter at least {0} characters" msgstr "請輸入不少於 {0} 個字元" -#: js/messages.php:918 +#: js/messages.php:924 msgid "Please enter a value between {0} and {1} characters long" msgstr "請輸入介於 {0} 與 {1} 個字元長度間的值" -#: js/messages.php:923 +#: js/messages.php:929 msgid "Please enter a value between {0} and {1}" msgstr "請輸入介於 {0} 與 {1} 間的值" -#: js/messages.php:928 +#: js/messages.php:934 msgid "Please enter a value less than or equal to {0}" msgstr "請輸入小於等於 {0} 的值" -#: js/messages.php:933 +#: js/messages.php:939 msgid "Please enter a value greater than or equal to {0}" msgstr "請輸入大於等於 {0} 的值" -#: js/messages.php:939 +#: js/messages.php:945 msgid "Please enter a valid date or time" msgstr "請輸入有效的日期或時間" -#: js/messages.php:944 +#: js/messages.php:950 msgid "Please enter a valid HEX input" msgstr "請輸入有效的 HEX 輸入值" -#: js/messages.php:949 libraries/Message.php:200 libraries/Util.php:677 +#: js/messages.php:955 libraries/Message.php:200 libraries/Util.php:677 #: libraries/core.lib.php:245 libraries/import.lib.php:94 #: libraries/insert_edit.lib.php:1230 view_operations.php:73 msgid "Error" @@ -2920,8 +2927,8 @@ msgstr "重新查詢" #: libraries/server_privileges.lib.php:4659 #: libraries/server_status_processes.lib.php:79 #: templates/server/databases/table_header.phtml:8 -#: templates/table/relation/common_form.phtml:24 -#: templates/table/relation/foreign_key_row.phtml:149 +#: templates/table/relation/common_form.phtml:33 +#: templates/table/relation/foreign_key_row.phtml:151 #: templates/table/relation/internal_relational_row.phtml:57 msgid "Database" msgstr "資料庫" @@ -3708,7 +3715,7 @@ msgstr "已刪除索引 %s。" #: libraries/controllers/table/TableStructureController.php:1186 #: libraries/operations.lib.php:1596 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/relation/foreign_key_row.phtml:77 #: templates/table/structure/check_all_table_column.phtml:15 #: templates/table/structure/display_structure.phtml:181 msgid "Drop" @@ -3764,8 +3771,8 @@ msgstr "檢視表" #: libraries/server_privileges.lib.php:4673 libraries/tracking.lib.php:1474 #: libraries/tracking.lib.php:1620 #: templates/database/structure/table_header.phtml:21 -#: templates/table/relation/common_form.phtml:25 -#: templates/table/relation/foreign_key_row.phtml:160 +#: templates/table/relation/common_form.phtml:34 +#: templates/table/relation/foreign_key_row.phtml:162 #: templates/table/relation/internal_relational_row.phtml:65 msgid "Table" msgstr "資料表" @@ -4120,39 +4127,39 @@ msgstr "此 MySQL 伺服器不支援 %s 儲存引擎。" msgid "Unknown table status:" msgstr "資料表狀態不明:" -#: libraries/Table.php:748 +#: libraries/Table.php:791 #, php-format msgid "Source database `%s` was not found!" msgstr "找不到來源資料庫「%s」!" -#: libraries/Table.php:756 +#: libraries/Table.php:799 #, php-format msgid "Target database `%s` was not found!" msgstr "找不到目標資料庫「%s」!" -#: libraries/Table.php:1305 +#: libraries/Table.php:1354 msgid "Invalid database:" msgstr "無效的資料庫:" -#: libraries/Table.php:1322 +#: libraries/Table.php:1371 msgid "Invalid table name:" msgstr "無效的資料資料表名稱:" -#: libraries/Table.php:1357 +#: libraries/Table.php:1406 #, php-format msgid "Failed to rename table %1$s to %2$s!" msgstr "無法將資料表 %1$s 重新命名爲 %2$s!" -#: libraries/Table.php:1376 +#: libraries/Table.php:1425 #, php-format msgid "Table %1$s has been renamed to %2$s." msgstr "資料表 %1$s 已重新命名為 %2$s。" -#: libraries/Table.php:1595 +#: libraries/Table.php:1644 msgid "Could not save table UI preferences!" msgstr "無法儲存「介面偏好」的資料表!" -#: libraries/Table.php:1625 +#: libraries/Table.php:1674 #, php-format msgid "" "Failed to cleanup table UI preferences (see $cfg['Servers'][$i]" @@ -4161,7 +4168,7 @@ msgstr "" "在清空資料表「介面偏好」時發生錯誤。(詳見 $cfg['Servers'][$i]" "['MaxTableUiprefs'] %s)" -#: libraries/Table.php:1778 +#: libraries/Table.php:1827 #, php-format msgid "" "Cannot save UI property \"%s\". The changes made will not be persistent " @@ -4171,19 +4178,19 @@ msgstr "" "無法儲存介面偏好「%s」,這個修改在下次將不會生效。請檢查該資料表的架構是否被" "修改過。" -#: libraries/Table.php:1914 +#: libraries/Table.php:1963 msgid "The name of the primary key must be \"PRIMARY\"!" msgstr "主鍵的名稱必須稱爲 \"PRIMARY\"!" -#: libraries/Table.php:1925 +#: libraries/Table.php:1974 msgid "Can't rename index to PRIMARY!" msgstr "無法將索引更改爲主鍵(PRIMARY)!" -#: libraries/Table.php:1947 +#: libraries/Table.php:1996 msgid "No index parts defined!" msgstr "沒有定義的索引部分!" -#: libraries/Table.php:2265 +#: libraries/Table.php:2314 #, php-format msgid "Error creating foreign key on %1$s (check data types)" msgstr "建立外鍵 %1$s 時發生錯誤 (檢查資料類型)" @@ -10548,47 +10555,47 @@ msgstr "將文字以 JSON 語法醒目提示顯示。" msgid "Formats text as XML with syntax highlighting." msgstr "將文字以 XML 語法醒目提示顯示。" -#: libraries/pmd_common.php:551 +#: libraries/pmd_common.php:549 msgid "Error: relation already exists." msgstr "錯誤: 關聯已存在。" -#: libraries/pmd_common.php:597 +#: libraries/pmd_common.php:595 msgid "FOREIGN KEY relation has been added." msgstr "已新增外鍵(Foreign Key)關聯。" -#: libraries/pmd_common.php:603 +#: libraries/pmd_common.php:601 msgid "Error: FOREIGN KEY relation could not be added!" msgstr "錯誤: FOREIGN KEY 關聯無法新增!" -#: libraries/pmd_common.php:608 +#: libraries/pmd_common.php:606 msgid "Error: Missing index on column(s)." msgstr "錯誤:缺少欄位索引。" -#: libraries/pmd_common.php:613 +#: libraries/pmd_common.php:611 msgid "Error: Relational features are disabled!" msgstr "錯誤:關聯未啟用!" -#: libraries/pmd_common.php:635 +#: libraries/pmd_common.php:633 msgid "Internal relation has been added." msgstr "已新增內部關聯。" -#: libraries/pmd_common.php:641 +#: libraries/pmd_common.php:639 msgid "Error: Internal relation could not be added!" msgstr "錯誤: 內部關聯無法新增!" -#: libraries/pmd_common.php:679 +#: libraries/pmd_common.php:677 msgid "FOREIGN KEY relation has been removed." msgstr "已移除外鍵(Foreign Key)關聯。" -#: libraries/pmd_common.php:685 +#: libraries/pmd_common.php:683 msgid "Error: FOREIGN KEY relation could not be removed!" msgstr "錯誤: 無法移除 FOREIGN KEY 關聯!" -#: libraries/pmd_common.php:712 +#: libraries/pmd_common.php:710 msgid "Error: Internal relation could not be removed!" msgstr "錯誤: 無法移除內部關聯!" -#: libraries/pmd_common.php:716 +#: libraries/pmd_common.php:714 msgid "Internal relation has been removed." msgstr "已移除內部關聯。" @@ -10706,11 +10713,11 @@ msgstr "" msgid "Re-login to phpMyAdmin to load the updated configuration file." msgstr "請重新登入 phpMyAdmin 以載入新設定並使其生效。" -#: libraries/relation.lib.php:1674 +#: libraries/relation.lib.php:1686 msgid "no description" msgstr "無說明" -#: libraries/relation.lib.php:1867 +#: libraries/relation.lib.php:1879 msgid "" "You do not have necessary privileges to create a database named " "'phpmyadmin'. You may go to 'Operations' tab of any database to set up the " @@ -10719,7 +10726,7 @@ msgstr "" "您沒有權限建立名稱為 'phpmyadmin' 的資料庫。您可能需至 '操作' 頁籤設定 " "phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:1982 +#: libraries/relation.lib.php:1994 #, php-format msgid "" "%sCreate%s a database named 'phpmyadmin' and setup the phpMyAdmin " @@ -10728,13 +10735,13 @@ msgstr "" "%s建立%s名稱為 'phpmyadmin' 的資料庫並安裝 phpMyAdmin 設定儲存空間於該資料" "庫。" -#: libraries/relation.lib.php:1990 +#: libraries/relation.lib.php:2002 #, php-format msgid "" "%sCreate%s the phpMyAdmin configuration storage in the current database." msgstr "於目前資料庫%s建立%s phpMyAdmin 設定儲存空間。" -#: libraries/relation.lib.php:1998 +#: libraries/relation.lib.php:2010 #, php-format msgid "%sCreate%s missing phpMyAdmin configuration storage tables." msgstr "%s建立%s缺少的 phpMyAdmin 設定儲存空間資料表。" @@ -11392,26 +11399,29 @@ msgid "routine" msgstr "程序" #: libraries/rte/rte_words.lib.php:32 -msgid "You do not have the necessary privileges to create a routine" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a routine" +msgid "You do not have the necessary privileges to create a routine." msgstr "您無建立程序的權限" #: libraries/rte/rte_words.lib.php:35 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to edit this routine" +"necessary privileges to edit this routine." msgstr "" #: libraries/rte/rte_words.lib.php:39 #, php-format msgid "" "No routine with name %1$s found in database %2$s. You might be lacking the " -"necessary privileges to view/export this routine" +"necessary privileges to view/export this routine." msgstr "" #: libraries/rte/rte_words.lib.php:42 -#, php-format -msgid "No routine with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No routine with name %1$s found in database %2$s" +msgid "No routine with name %1$s found in database %2$s." msgstr "在資料庫 %2$s 中無此程序名稱 %1$s" #: libraries/rte/rte_words.lib.php:43 @@ -11432,12 +11442,15 @@ msgid "trigger" msgstr "觸發器" #: libraries/rte/rte_words.lib.php:54 -msgid "You do not have the necessary privileges to create a trigger" +#, fuzzy +#| msgid "You do not have the necessary privileges to create a trigger" +msgid "You do not have the necessary privileges to create a trigger." msgstr "您無建立觸發器的權限" #: libraries/rte/rte_words.lib.php:56 -#, php-format -msgid "No trigger with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No trigger with name %1$s found in database %2$s" +msgid "No trigger with name %1$s found in database %2$s." msgstr "資料庫 %2$s 中無此觸發器 %1$s" #: libraries/rte/rte_words.lib.php:57 @@ -11458,12 +11471,15 @@ msgid "event" msgstr "事件" #: libraries/rte/rte_words.lib.php:68 -msgid "You do not have the necessary privileges to create an event" +#, fuzzy +#| msgid "You do not have the necessary privileges to create an event" +msgid "You do not have the necessary privileges to create an event." msgstr "您沒有足夠的權限建立一個事件" #: libraries/rte/rte_words.lib.php:70 -#, php-format -msgid "No event with name %1$s found in database %2$s" +#, fuzzy, php-format +#| msgid "No event with name %1$s found in database %2$s" +msgid "No event with name %1$s found in database %2$s." msgstr "在資料庫 %2$s 中找不到名為 %1$s 的事件" #: libraries/rte/rte_words.lib.php:71 @@ -13165,7 +13181,7 @@ msgstr "" #: libraries/sql-parser/src/Components/CreateDefinition.php:227 msgid "" -"A symbol name was expected! A reserved keyword can not be used as a field " +"A symbol name was expected! A reserved keyword can not be used as a column " "name without backquotes." msgstr "" @@ -13266,7 +13282,7 @@ msgstr "預期之外的陳述句開頭。" msgid "Unrecognized statement type." msgstr "無法辨識的陳述句類型。" -#: libraries/sql-parser/src/Parser.php:551 +#: libraries/sql-parser/src/Parser.php:554 msgid "No transaction was previously started." msgstr "前面未開啟交易(Transaction)模式。" @@ -13287,6 +13303,12 @@ msgstr "此類型的子句已於前面解析過。" msgid "Unrecognized keyword." msgstr "無法辨識的關鍵字。" +#: libraries/sql-parser/src/Statement.php:457 +#, fuzzy +#| msgid "Unexpected beginning of statement." +msgid "Unexpected ordering of clauses." +msgstr "預期之外的陳述句開頭。" + #: libraries/sql-parser/src/Statements/CreateStatement.php:381 msgid "The name of the entity was expected." msgstr "預期要有實體名稱。" @@ -14746,35 +14768,42 @@ msgstr "動作" msgid "Constraint properties" msgstr "限制屬性" -#: templates/table/relation/common_form.phtml:12 +#: templates/table/relation/common_form.phtml:13 +msgid "" +"Creating a foreign key over a non-indexed column would automatically create " +"an index on it. Alternatively, you can define an index below, before " +"creating the foreign key." +msgstr "" + +#: templates/table/relation/common_form.phtml:20 msgid "" "Only columns with index will be displayed. You can define an index below." msgstr "僅顯示己建立索引的欄位。 您可以於下方定義索引。" -#: templates/table/relation/common_form.phtml:17 +#: templates/table/relation/common_form.phtml:26 msgid "Foreign key constraint" msgstr "外鍵限制式" -#: templates/table/relation/common_form.phtml:59 +#: templates/table/relation/common_form.phtml:68 msgid "+ Add constraint" msgstr "加入限制(Constraint)" -#: templates/table/relation/common_form.phtml:69 -#: templates/table/relation/common_form.phtml:75 +#: templates/table/relation/common_form.phtml:78 +#: templates/table/relation/common_form.phtml:84 msgid "Internal relations" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:79 +#: templates/table/relation/common_form.phtml:88 msgid "Internal relation" msgstr "內部關聯" -#: templates/table/relation/common_form.phtml:82 +#: templates/table/relation/common_form.phtml:91 msgid "" "An internal relation is not necessary when a corresponding FOREIGN KEY " "relation exists." msgstr "當外鍵(FOREIGN KEY)關連存在時就不需要使用內部關聯。" -#: templates/table/relation/common_form.phtml:110 +#: templates/table/relation/common_form.phtml:119 msgid "Choose column to display:" msgstr "選擇要顯示的欄位:" @@ -14783,11 +14812,11 @@ msgstr "選擇要顯示的欄位:" msgid "Foreign key constraint %s has been dropped" msgstr "己移除外鍵限制 %s" -#: templates/table/relation/foreign_key_row.phtml:86 +#: templates/table/relation/foreign_key_row.phtml:88 msgid "Constraint name" msgstr "限制式名稱" -#: templates/table/relation/foreign_key_row.phtml:141 +#: templates/table/relation/foreign_key_row.phtml:143 msgid "+ Add column" msgstr "+ 新增欄位" From 32a381d0a595ae03fde6e16a0dfabbe671fb85b2 Mon Sep 17 00:00:00 2001 From: Roger Walt Date: Fri, 8 Jul 2016 10:44:50 +0200 Subject: [PATCH 28/32] Fixes #12322, no default function selected for foreignkey fields MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Roger Walt Signed-off-by: Michal Čihař --- libraries/Util.php | 4 ++-- libraries/insert_edit.lib.php | 14 ++++++++------ 2 files changed, 10 insertions(+), 8 deletions(-) diff --git a/libraries/Util.php b/libraries/Util.php index 27d83f2276..0505692a4c 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -4052,7 +4052,7 @@ class Util * @return string An HTML snippet of a dropdown list with function * names appropriate for the requested column. */ - public static function getFunctionsForField($field, $insert_mode) + public static function getFunctionsForField($field, $insert_mode, $foreignData) { $default_function = self::getDefaultFunctionForField($field, $insert_mode); $dropdown_built = array(); @@ -4064,7 +4064,7 @@ class Util $functions = $GLOBALS['PMA_Types']->getFunctions($field['True_Type']); foreach ($functions as $function) { $retval .= '' . "\n"; diff --git a/libraries/insert_edit.lib.php b/libraries/insert_edit.lib.php index 2fca16a83e..69a5f9bc35 100644 --- a/libraries/insert_edit.lib.php +++ b/libraries/insert_edit.lib.php @@ -380,12 +380,13 @@ function PMA_getEnumSetAndTimestampColumns($column, $timestamp_seen) * @param integer $idindex id index * @param boolean $insert_mode insert mode or edit mode * @param boolean $readOnly is column read only or not + * @param array $foreignData foreign key data * * @return string an html snippet */ function PMA_getFunctionColumn($column, $is_upload, $column_name_appendix, $onChangeClause, $no_support_types, $tabindex_for_function, - $tabindex, $idindex, $insert_mode, $readOnly + $tabindex, $idindex, $insert_mode, $readOnly, $foreignData ) { $html_output = ''; if (($GLOBALS['cfg']['ProtectBinary'] === 'blob' @@ -411,7 +412,8 @@ function PMA_getFunctionColumn($column, $is_upload, $column_name_appendix, . ' id="field_' . $idindex . '_1">'; $html_output .= PMA\libraries\Util::getFunctionsForField( $column, - $insert_mode + $insert_mode, + $foreignData ) . "\n"; $html_output .= '' . "\n"; @@ -2852,19 +2854,19 @@ function PMA_getHtmlForInsertEditFormColumn($table_columns, $column_number, // The function column // ------------------- + $foreignData = PMA_getForeignData( + $foreigners, $column['Field'], false, '', '' + ); if ($GLOBALS['cfg']['ShowFunctionFields']) { $html_output .= PMA_getFunctionColumn( $column, $is_upload, $column_name_appendix, $onChangeClause, $no_support_types, $tabindex_for_function, - $tabindex, $idindex, $insert_mode, $readOnly + $tabindex, $idindex, $insert_mode, $readOnly, $foreignData ); } // The null column // --------------- - $foreignData = PMA_getForeignData( - $foreigners, $column['Field'], false, '', '' - ); $html_output .= PMA_getNullColumn( $column, $column_name_appendix, $real_null_value, $tabindex, $tabindex_for_null, $idindex, $vkey, $foreigners, From 08840559ba6de7e16b89ae863816b45c7df8939f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 10 Nov 2016 10:55:59 +0100 Subject: [PATCH 29/32] Adjust code to changes in #12372 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Michal Čihař --- libraries/Util.php | 2 +- libraries/rte/rte_routines.lib.php | 2 +- test/libraries/PMA_insert_edit_test.php | 14 +++++++------- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/libraries/Util.php b/libraries/Util.php index 0505692a4c..0588709bf4 100644 --- a/libraries/Util.php +++ b/libraries/Util.php @@ -4064,7 +4064,7 @@ class Util $functions = $GLOBALS['PMA_Types']->getFunctions($field['True_Type']); foreach ($functions as $function) { $retval .= '' . "\n"; diff --git a/libraries/rte/rte_routines.lib.php b/libraries/rte/rte_routines.lib.php index 0f901a369d..292fd5b6a3 100644 --- a/libraries/rte/rte_routines.lib.php +++ b/libraries/rte/rte_routines.lib.php @@ -1650,7 +1650,7 @@ function PMA_RTN_getExecuteForm($routine) ); $retval .= ""; } $retval .= "\n"; diff --git a/test/libraries/PMA_insert_edit_test.php b/test/libraries/PMA_insert_edit_test.php index a61d1bf1d4..68145897c4 100644 --- a/test/libraries/PMA_insert_edit_test.php +++ b/test/libraries/PMA_insert_edit_test.php @@ -562,7 +562,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( 'Binary', PMA_getFunctionColumn( - $column, false, '', '', array(), 0, 0, 0, false, false + $column, false, '', '', array(), 0, 0, 0, false, false, array() ) ); @@ -571,7 +571,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( 'Binary', PMA_getFunctionColumn( - $column, true, '', '', array(), 0, 0, 0, false, false + $column, true, '', '', array(), 0, 0, 0, false, false, array() ) ); @@ -580,7 +580,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( 'Binary', PMA_getFunctionColumn( - $column, true, '', '', array(), 0, 0, 0, false, false + $column, true, '', '', array(), 0, 0, 0, false, false, array() ) ); @@ -589,7 +589,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( '--', PMA_getFunctionColumn( - $column, true, '', '', array(), 0, 0, 0, false, false + $column, true, '', '', array(), 0, 0, 0, false, false, array() ) ); @@ -597,7 +597,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( '--', PMA_getFunctionColumn( - $column, true, '', '', array(), 0, 0, 0, false, false + $column, true, '', '', array(), 0, 0, 0, false, false, array() ) ); @@ -606,7 +606,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( '--', PMA_getFunctionColumn( - $column, true, '', '', array('int'), 0, 0, 0, false, false + $column, true, '', '', array('int'), 0, 0, 0, false, false, array() ) ); @@ -615,7 +615,7 @@ class PMA_InsertEditTest extends PHPUnit_Framework_TestCase $this->assertContains( '