)
*
- * @uses PMA_showHint()
- * @uses $GLOBALS['cfg']['PropertiesNumColumns']
- * @uses $GLOBALS['is_show_stats']
- * @uses $GLOBALS['colspan_for_structure']
- * @uses PMA_SortableTableHeader()
* @param boolean $db_is_information_schema
* @param boolean $replication
*/
diff --git a/libraries/db_table_exists.lib.php b/libraries/db_table_exists.lib.php
index 8eb93e46d8..97b7ec862e 100644
--- a/libraries/db_table_exists.lib.php
+++ b/libraries/db_table_exists.lib.php
@@ -46,7 +46,7 @@ if (empty($is_table) && !defined('PMA_SUBMIT_MULT') && ! defined('TABLE_MAY_BE_A
if (! $is_table) {
$_result = PMA_DBI_try_query(
- 'SHOW TABLES LIKE \'' . PMA_sqlAddslashes($table, true) . '\';',
+ 'SHOW TABLES LIKE \'' . PMA_sqlAddSlashes($table, true) . '\';',
null, PMA_DBI_QUERY_STORE);
$is_table = @PMA_DBI_num_rows($_result);
PMA_DBI_free_result($_result);
diff --git a/libraries/dbi/mysql.dbi.lib.php b/libraries/dbi/mysql.dbi.lib.php
index 5cbb4fa3b7..aa099eb070 100644
--- a/libraries/dbi/mysql.dbi.lib.php
+++ b/libraries/dbi/mysql.dbi.lib.php
@@ -182,7 +182,6 @@ function PMA_DBI_fetch_row($result)
/*
* Adjusts the result pointer to an arbitrary row in the result
*
- * @uses mysql_data_seek()
* @param $result
* @param $offset
* @return boolean true on success, false on failure
@@ -235,8 +234,6 @@ function PMA_DBI_next_result() {
/**
* Returns a string representing the type of connection used
- * @uses mysql_get_host_info()
- * @uses $GLOBALS['userlink'] as default for $link
* @param resource $link mysql link
* @return string type of connection used
*/
@@ -254,8 +251,6 @@ function PMA_DBI_get_host_info($link = null)
/**
* Returns the version of the MySQL protocol used
- * @uses mysql_get_proto_info()
- * @uses $GLOBALS['userlink'] as default for $link
* @param resource $link mysql link
* @return integer version of the MySQL protocol used
*/
@@ -273,7 +268,6 @@ function PMA_DBI_get_proto_info($link = null)
/**
* returns a string that represents the client library version
- * @uses mysql_get_client_info()
* @return string MySQL client library version
*/
function PMA_DBI_get_client_info()
@@ -284,13 +278,6 @@ function PMA_DBI_get_client_info()
/**
* returns last error message or false if no errors occured
*
- * @uses PMA_DBI_convert_message()
- * @uses $GLOBALS['errno']
- * @uses $GLOBALS['userlink']
- * @uses mysql_errno()
- * @uses mysql_error()
- * @uses defined()
- * @uses PMA_generate_common_url()
* @param resource $link mysql link
* @return string|boolean $error or false
*/
@@ -379,8 +366,6 @@ function PMA_DBI_insert_id($link = null)
/**
* returns the number of rows affected by last query
*
- * @uses $GLOBALS['userlink']
- * @uses mysql_affected_rows()
* @param object mysql $link the mysql object
* @param boolean $get_from_cache
* @return string integer
diff --git a/libraries/dbi/mysqli.dbi.lib.php b/libraries/dbi/mysqli.dbi.lib.php
index 37f5daaf6b..9c8e3a6717 100644
--- a/libraries/dbi/mysqli.dbi.lib.php
+++ b/libraries/dbi/mysqli.dbi.lib.php
@@ -36,16 +36,6 @@ if (! defined('MYSQLI_BINARY_FLAG')) {
/**
* connects to the database server
*
- * @uses $GLOBALS['cfg']['Server']
- * @uses PMA_auth_fails()
- * @uses PMA_DBI_postConnect()
- * @uses MYSQLI_CLIENT_COMPRESS
- * @uses MYSQLI_OPT_LOCAL_INFILE
- * @uses strtolower()
- * @uses mysqli_init()
- * @uses mysqli_options()
- * @uses mysqli_real_connect()
- * @uses defined()
* @param string $user mysql user name
* @param string $password mysql user password
* @param boolean $is_controluser
@@ -131,8 +121,6 @@ function PMA_DBI_connect($user, $password, $is_controluser = false, $server = nu
/**
* selects given database
*
- * @uses $GLOBALS['userlink']
- * @uses mysqli_select_db()
* @param string $dbname database name to select
* @param object mysqli $link the mysqli object
* @return boolean true or false
@@ -152,11 +140,6 @@ function PMA_DBI_select_db($dbname, $link = null)
/**
* runs a query and returns the result
*
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_QUERY_UNBUFFERED
- * @uses MYSQLI_STORE_RESULT
- * @uses MYSQLI_USE_RESULT
- * @uses mysqli_query()
* @param string $query query to execute
* @param object mysqli $link mysqli object
* @param integer $options
@@ -178,8 +161,6 @@ function PMA_DBI_real_query($query, $link, $options)
/**
* returns array of rows with associative and numeric keys from $result
*
- * @uses mysqli_fetch_array()
- * @uses MYSQLI_BOTH
* @param object mysqli result $result
* @return array result rows
*/
@@ -191,8 +172,6 @@ function PMA_DBI_fetch_array($result)
/**
* returns array of rows with associative keys from $result
*
- * @uses mysqli_fetch_array()
- * @uses MYSQLI_ASSOC
* @param object mysqli result $result
* @return array result rows
*/
@@ -204,8 +183,6 @@ function PMA_DBI_fetch_assoc($result)
/**
* returns array of rows with numeric keys from $result
*
- * @uses mysqli_fetch_array()
- * @uses MYSQLI_NUM
* @param object mysqli result $result
* @return array result rows
*/
@@ -217,7 +194,6 @@ function PMA_DBI_fetch_row($result)
/*
* Adjusts the result pointer to an arbitrary row in the result
*
- * @uses mysqli_data_seek()
* @param $result
* @param $offset
* @return boolean true on success, false on failure
@@ -230,9 +206,6 @@ function PMA_DBI_data_seek($result, $offset)
/**
* Frees the memory associated with the results
*
- * @uses mysqli_result
- * @uses func_get_args()
- * @uses mysqli_free_result()
* @param result $result,... one or more mysql result resources
*/
function PMA_DBI_free_result()
@@ -247,8 +220,6 @@ function PMA_DBI_free_result()
/**
* Check if there are any more query results from a multi query
*
- * @uses $GLOBALS['userlink']
- * @uses mysqli_more_results()
* @param object mysqli $link the mysqli object
* @return boolean true or false
*/
@@ -266,8 +237,6 @@ function PMA_DBI_more_results($link = null) {
/**
* Prepare next result from multi_query
*
- * @uses $GLOBALS['userlink']
- * @uses mysqli_next_result()
* @param object mysqli $link the mysqli object
* @return boolean true or false
*/
@@ -284,8 +253,6 @@ function PMA_DBI_next_result($link = null) {
/**
* Returns a string representing the type of connection used
- * @uses mysqli_get_host_info()
- * @uses $GLOBALS['userlink'] as default for $link
* @param resource $link mysql link
* @return string type of connection used
*/
@@ -303,8 +270,6 @@ function PMA_DBI_get_host_info($link = null)
/**
* Returns the version of the MySQL protocol used
- * @uses mysqli_get_proto_info()
- * @uses $GLOBALS['userlink'] as default for $link
* @param resource $link mysql link
* @return integer version of the MySQL protocol used
*/
@@ -322,7 +287,6 @@ function PMA_DBI_get_proto_info($link = null)
/**
* returns a string that represents the client library version
- * @uses mysqli_get_client_info()
* @return string MySQL client library version
*/
function PMA_DBI_get_client_info()
@@ -333,14 +297,6 @@ function PMA_DBI_get_client_info()
/**
* returns last error message or false if no errors occured
*
- * @uses PMA_DBI_convert_message()
- * @uses $GLOBALS['errno']
- * @uses $GLOBALS['userlink']
- * @uses mysqli_errno()
- * @uses mysqli_error()
- * @uses mysqli_connect_errno()
- * @uses mysqli_connect_error()
- * @uses defined()
* @param resource $link mysql link
* @return string|boolean $error or false
*/
@@ -406,8 +362,6 @@ function PMA_DBI_num_rows($result)
/**
* returns last inserted auto_increment id for given $link or $GLOBALS['userlink']
*
- * @uses $GLOBALS['userlink']
- * @uses mysqli_insert_id()
* @param object mysqli $link the mysqli object
* @return string ineteger
*/
@@ -432,8 +386,6 @@ function PMA_DBI_insert_id($link = '')
/**
* returns the number of rows affected by last query
*
- * @uses $GLOBALS['userlink']
- * @uses mysqli_affected_rows()
* @param object mysqli $link the mysqli object
* @param boolean $get_from_cache
* @return string integer
@@ -458,20 +410,6 @@ function PMA_DBI_affected_rows($link = null, $get_from_cache = true)
* returns metainfo for fields in $result
*
* @todo preserve orignal flags value
- * @uses PMA_DBI_field_flags()
- * @uses MYSQLI_TYPE_*
- * @uses MYSQLI_MULTIPLE_KEY_FLAG
- * @uses MYSQLI_PRI_KEY_FLAG
- * @uses MYSQLI_UNIQUE_KEY_FLAG
- * @uses MYSQLI_NOT_NULL_FLAG
- * @uses MYSQLI_UNSIGNED_FLAG
- * @uses MYSQLI_ZEROFILL_FLAG
- * @uses MYSQLI_NUM_FLAG
- * @uses MYSQLI_TYPE_BLOB
- * @uses MYSQLI_BLOB_FLAG
- * @uses defined()
- * @uses mysqli_fetch_fields()
- * @uses is_array()
* @param object mysqli result $result
* @return array meta info for fields in $result
*/
@@ -562,7 +500,6 @@ function PMA_DBI_num_fields($result)
/**
* returns the length of the given field $i in $result
*
- * @uses mysqli_fetch_field_direct()
* @param object mysqli result $result
* @param integer $i field
* @return integer length of field
@@ -575,7 +512,6 @@ function PMA_DBI_field_len($result, $i)
/**
* returns name of $i. field in $result
*
- * @uses mysqli_fetch_field_direct()
* @param object mysqli result $result
* @param integer $i field
* @return string name of $i. field in $result
@@ -588,26 +524,6 @@ function PMA_DBI_field_name($result, $i)
/**
* returns concatenated string of human readable field flags
*
- * @uses MYSQLI_UNIQUE_KEY_FLAG
- * @uses MYSQLI_NUM_FLAG
- * @uses MYSQLI_PART_KEY_FLAG
- * @uses MYSQLI_TYPE_SET
- * @uses MYSQLI_TIMESTAMP_FLAG
- * @uses MYSQLI_AUTO_INCREMENT_FLAG
- * @uses MYSQLI_TYPE_ENUM
- * @uses MYSQLI_ZEROFILL_FLAG
- * @uses MYSQLI_UNSIGNED_FLAG
- * @uses MYSQLI_BLOB_FLAG
- * @uses MYSQLI_MULTIPLE_KEY_FLAG
- * @uses MYSQLI_UNIQUE_KEY_FLAG
- * @uses MYSQLI_PRI_KEY_FLAG
- * @uses MYSQLI_NOT_NULL_FLAG
- * @uses MYSQLI_TYPE_BLOB
- * @uses MYSQLI_TYPE_MEDIUM_BLOB
- * @uses MYSQLI_TYPE_LONG_BLOB
- * @uses MYSQLI_TYPE_VAR_STRING
- * @uses MYSQLI_TYPE_STRING
- * @uses mysqli_fetch_field_direct()
* @param object mysqli result $result
* @param integer $i field
* @return string field flags
diff --git a/libraries/display_tbl.lib.php b/libraries/display_tbl.lib.php
index 2007edc428..2ecd629c9c 100644
--- a/libraries/display_tbl.lib.php
+++ b/libraries/display_tbl.lib.php
@@ -206,8 +206,6 @@ function PMA_isSelect()
/**
* Displays a navigation button
*
- * @uses $GLOBALS['cfg']['NavigationBarIconic']
- * @uses PMA_generate_common_hidden_inputs()
*
* @param string iconic caption for button
* @param string text for button
@@ -256,10 +254,6 @@ function PMA_displayTableNavigationOneButton($caption, $title, $pos, $html_sql_q
/**
* Displays a navigation bar to browse among the results of a SQL query
*
- * @uses $_SESSION['tmp_user_values']['disp_direction']
- * @uses $_SESSION['tmp_user_values']['repeat_cells']
- * @uses $_SESSION['tmp_user_values']['max_rows']
- * @uses $_SESSION['tmp_user_values']['pos']
* @param integer the offset for the "next" page
* @param integer the offset for the "previous" page
* @param string the URL-encoded query
@@ -452,12 +446,6 @@ onsubmit="return (checkFormElementInRange(this, 'session_max_rows', 'type) || $bool_nowrap) ? ' nowrap' : '');
- $where_comparison = ' = \'' . PMA_sqlAddslashes($row[$i]) . '\'';
+ $where_comparison = ' = \'' . PMA_sqlAddSlashes($row[$i]) . '\'';
$vertical_display['data'][$row_no][$i] = '| support
- * @uses PMA_ENGINE_SUPPORT_YES
* @return array detail pages
*/
function getInfoPages()
@@ -139,12 +135,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/**
* returns html tables with stats over inno db buffer pool
*
- * @uses PMA_DBI_fetch_result()
- * @uses PMA_formatNumber()
- * @uses PMA_formatByteDown()
- * @uses join()
- * @uses htmlspecialchars()
- * @uses PMA_formatNumber()
* @return string html table with stats
*/
function getPageBufferpool()
@@ -272,8 +262,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/**
* returns InnoDB status
*
- * @uses htmlspecialchars()
- * @uses PMA_DBI_fetch_value()
* @return string result of SHOW INNODB STATUS inside pre tags
*/
function getPageStatus()
@@ -286,8 +274,6 @@ class PMA_StorageEngine_innodb extends PMA_StorageEngine
/**
* returns content for page $id
*
- * @uses $this->getInfoPages()
- * @uses array_key_exists()
* @param string $id page id
* @return string html output
*/
diff --git a/libraries/export/sql.php b/libraries/export/sql.php
index c561a93bdd..37d3be1a00 100644
--- a/libraries/export/sql.php
+++ b/libraries/export/sql.php
@@ -595,7 +595,7 @@ function PMA_exportDBFooter($db)
$delimiter = '$$';
if (PMA_MYSQL_INT_VERSION > 50100) {
- $event_names = PMA_DBI_fetch_result('SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddslashes($db,true) . '\';');
+ $event_names = PMA_DBI_fetch_result('SELECT EVENT_NAME FROM information_schema.EVENTS WHERE EVENT_SCHEMA= \'' . PMA_sqlAddSlashes($db,true) . '\';');
} else {
$event_names = array();
}
@@ -690,7 +690,7 @@ function PMA_getTableDef($db, $table, $crlf, $error_url, $show_dates = false, $a
$new_crlf = $crlf;
// need to use PMA_DBI_QUERY_STORE with PMA_DBI_num_rows() in mysqli
- $result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddslashes($table) . '\'', null, PMA_DBI_QUERY_STORE);
+ $result = PMA_DBI_query('SHOW TABLE STATUS FROM ' . PMA_backquote($db) . ' LIKE \'' . PMA_sqlAddSlashes($table, true) . '\'', null, PMA_DBI_QUERY_STORE);
if ($result != false) {
if (PMA_DBI_num_rows($result) > 0) {
$tmpres = PMA_DBI_fetch_assoc($result);
@@ -1192,10 +1192,10 @@ function PMA_exportData($db, $table, $crlf, $error_url, $sql_query)
}
// detection of 'bit' works only on mysqli extension
} elseif ($fields_meta[$j]->type == 'bit') {
- $values[] = "b'" . PMA_sqlAddslashes(PMA_printable_bit_value($row[$j], $fields_meta[$j]->length)) . "'";
+ $values[] = "b'" . PMA_sqlAddSlashes(PMA_printable_bit_value($row[$j], $fields_meta[$j]->length)) . "'";
// something else -> treat as a string
} else {
- $values[] = '\'' . str_replace($search, $replace, PMA_sqlAddslashes($row[$j])) . '\'';
+ $values[] = '\'' . str_replace($search, $replace, PMA_sqlAddSlashes($row[$j])) . '\'';
} // end if
} // end for
diff --git a/libraries/footer.inc.php b/libraries/footer.inc.php
index 5a66351664..c94c0164d5 100644
--- a/libraries/footer.inc.php
+++ b/libraries/footer.inc.php
@@ -13,31 +13,6 @@
*
* always use $GLOBALS, as this script is also included by functions
*
- * @uses $_REQUEST['no_history']
- * @uses $GLOBALS['lang']
- * @uses $GLOBALS['collation_connection']
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['db']
- * @uses $GLOBALS['table']
- * @uses $GLOBALS['error_message']
- * @uses $GLOBALS['reload']
- * @uses $GLOBALS['sql_query']
- * @uses $GLOBALS['focus_querywindow']
- * @uses $GLOBALS['checked_special']
- * @uses $GLOBALS['pmaThemeImage']
- * @uses $GLOBALS['controllink'] to close it
- * @uses $GLOBALS['userlink'] to close it
- * @uses $cfg['Server']['user']
- * @uses $cfg['NavigationBarIconic']
- * @uses $cfg['MaxCharactersInDisplayedSQL']
- * @uses PMA_isValid()
- * @uses PMA_setHistory()
- * @uses PMA_ifSetOr()
- * @uses PMA_escapeJsString()
- * @uses PMA_getenv()
- * @uses PMA_generate_common_url()
- * @uses basename()
- * @uses file_exists()
* @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
diff --git a/libraries/grab_globals.lib.php b/libraries/grab_globals.lib.php
index cddaca2098..d1988551be 100644
--- a/libraries/grab_globals.lib.php
+++ b/libraries/grab_globals.lib.php
@@ -15,11 +15,6 @@ if (! defined('PHPMYADMIN')) {
/**
* copy values from one array to another, usually from a superglobal into $GLOBALS
*
- * @uses $GLOBALS['_import_blacklist']
- * @uses preg_replace()
- * @uses array_keys()
- * @uses array_unique()
- * @uses stripslashes()
* @param array $array values from
* @param array $target values to
* @param boolean $sanitize prevent importing key names in $_import_blacklist
diff --git a/libraries/header.inc.php b/libraries/header.inc.php
index 5c07472bd2..80763e78b1 100644
--- a/libraries/header.inc.php
+++ b/libraries/header.inc.php
@@ -154,8 +154,6 @@ if (isset($GLOBALS['is_ajax_request']) && !$GLOBALS['is_ajax_request']) {
/**
* Displays table comment
- * @uses $show_comment from libraries/tbl_info.inc.php
- * @uses $GLOBALS['avoid_show_comment'] from tbl_relation.php
*/
if (!empty($show_comment) && ! isset($GLOBALS['avoid_show_comment'])) {
if (strstr($show_comment, '; InnoDB free')) {
diff --git a/libraries/import.lib.php b/libraries/import.lib.php
index 11ae523172..e2cbdd201f 100644
--- a/libraries/import.lib.php
+++ b/libraries/import.lib.php
@@ -73,7 +73,6 @@ function PMA_detectCompression($filepath)
* Runs query inside import buffer. This is needed to allow displaying
* of last SELECT, SHOW or HANDLER results and similar nice stuff.
*
- * @uses $GLOBALS['finished'] read and write
* @param string query to run
* @param string query to display, this might be commented
* @param bool whether to use control user for queries
@@ -228,11 +227,6 @@ function PMA_lookForUse($buffer, $db, $reload)
/**
* Returns next part of imported file/buffer
*
- * @uses $GLOBALS['offset'] read and write
- * @uses $GLOBALS['import_file'] read only
- * @uses $GLOBALS['import_text'] read and write
- * @uses $GLOBALS['finished'] read and write
- * @uses $GLOBALS['read_limit'] read only
* @param integer size of buffer to read (this is maximal size
* function will return)
* @return string part of file/buffer
@@ -338,7 +332,6 @@ function PMA_importGetNextChunk($size = 32768)
*
* @access public
*
- * @uses chr()
* @param int $num
* @return string The column's "Excel" name
*/
@@ -386,9 +379,6 @@ function PMA_getColumnAlphaName($num)
*
* @access public
*
- * @uses strtoupper()
- * @uses strlen()
- * @uses ord()
* @param string $name (i.e. "A", or "BC", etc.)
* @return int The column number
*/
@@ -449,8 +439,6 @@ define("SIZES", 1);
*
* @access public
*
- * @uses substr()
- * @uses strpos()
* @param string $last_cumulative_size
* @return int Precision of the given decimal size notation
*/
@@ -464,9 +452,6 @@ function PMA_getM($last_cumulative_size) {
*
* @access public
*
- * @uses substr()
- * @uses strpos()
- * @uses strlen()
* @param string $last_cumulative_size
* @return int Scale of the given decimal size notation
*/
@@ -480,8 +465,6 @@ function PMA_getD($last_cumulative_size) {
*
* @access public
*
- * @uses strlen()
- * @uses strpos()
* @param string &$cell
* @return array Contains the precision, scale, and full size representation of the given decimal cell
*/
@@ -504,19 +487,6 @@ function PMA_getDecimalSize(&$cell) {
*
* @access public
*
- * @uses M
- * @uses D
- * @uses FULL
- * @uses VARCHAR
- * @uses DECIMAL
- * @uses BIGINT
- * @uses INT
- * @uses NONE
- * @uses strcmp()
- * @uses strlen()
- * @uses PMA_getM()
- * @uses PMA_getD()
- * @uses PMA_getDecimalSize()
* @param string $last_cumulative_size Last cumulative column size
* @param int $last_cumulative_type Last cumulative column type (NONE or VARCHAR or DECIMAL or INT or BIGINT)
* @param int $curr_type Type of the current cell (NONE or VARCHAR or DECIMAL or INT or BIGINT)
@@ -729,15 +699,6 @@ function PMA_detectSize($last_cumulative_size, $last_cumulative_type, $curr_type
*
* @access public
*
- * @uses DECIMAL
- * @uses BIGINT
- * @uses INT
- * @uses VARCHAR
- * @uses NONE
- * @uses is_numeric()
- * @uses strcmp()
- * @uses strpos()
- * @uses substr_count()
* @param int $last_cumulative_type Last cumulative column type (VARCHAR or INT or BIGINT or DECIMAL or NONE)
* @param string &$cell String representation of the cell for which a best-fit type is to be determined
* @return int The MySQL type representation (VARCHAR or INT or BIGINT or DECIMAL or NONE)
@@ -779,18 +740,6 @@ function PMA_detectType($last_cumulative_type, &$cell) {
*
* @access public
*
- * @uses TBL_NAME
- * @uses COL_NAMES
- * @uses ROWS
- * @uses VARCHAR
- * @uses DECIMAL
- * @uses BIGINT
- * @uses INT
- * @uses NONE
- * @uses count()
- * @uses is_array()
- * @uses PMA_detectType()
- * @uses PMA_detectSize()
* @param &$table array(string $table_name, array $col_names, array $rows)
* @return array array(array $types, array $sizes)
*/
@@ -885,20 +834,6 @@ $import_notice = NULL;
*
* @access public
*
- * @uses TBL_NAME
- * @uses COL_NAMES
- * @uses ROWS
- * @uses TYPES
- * @uses SIZES
- * @uses strcmp()
- * @uses count()
- * @uses preg_match()
- * @uses preg_replace()
- * @uses PMA_isView()
- * @uses PMA_backquote()
- * @uses PMA_importRunQuery()
- * @uses PMA_generate_common_url()
- * @uses PMA_Message::notice()
* @param string $db_name Name of the database
* @param array &$tables Array of tables for the specified database
* @param array &$analyses = NULL Analyses of the tables
@@ -1052,7 +987,7 @@ function PMA_buildSQL($db_name, &$tables, &$analyses = NULL, &$additional_sql =
}
$tempSQLStr .= (($is_varchar) ? "'" : "");
- $tempSQLStr .= PMA_sqlAddslashes((string)$tables[$i][ROWS][$j][$k]);
+ $tempSQLStr .= PMA_sqlAddSlashes((string)$tables[$i][ROWS][$j][$k]);
$tempSQLStr .= (($is_varchar) ? "'" : "");
if ($k != ($num_cols - 1)) {
diff --git a/libraries/import/docsql.php b/libraries/import/docsql.php
index 3ac799f063..4ba089a5ec 100644
--- a/libraries/import/docsql.php
+++ b/libraries/import/docsql.php
@@ -68,10 +68,10 @@ if ($data === true && !$error && !$timeout_passed) {
' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . '
(db_name, table_name, column_name, ' . PMA_backquote('comment') . ')
VALUES (
- \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\',
- \'' . PMA_sqlAddslashes(trim($tab)) . '\',
- \'' . PMA_sqlAddslashes(trim($inf[0])) . '\',
- \'' . PMA_sqlAddslashes(trim($inf[1])) . '\')';
+ \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\',
+ \'' . PMA_sqlAddSlashes(trim($tab)) . '\',
+ \'' . PMA_sqlAddSlashes(trim($inf[0])) . '\',
+ \'' . PMA_sqlAddSlashes(trim($inf[1])) . '\')';
PMA_importRunQuery($qry, $qry . '-- ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]), true);
} // end inf[1] exists
if (!empty($inf[2]) && strlen(trim($inf[2])) > 0) {
@@ -81,12 +81,12 @@ if ($data === true && !$error && !$timeout_passed) {
' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['relation']) . '
(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)
VALUES (
- \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\',
- \'' . PMA_sqlAddslashes(trim($tab)) . '\',
- \'' . PMA_sqlAddslashes(trim($inf[0])) . '\',
- \'' . PMA_sqlAddslashes($GLOBALS['db']) . '\',
- \'' . PMA_sqlAddslashes(trim($for[0])) . '\',
- \'' . PMA_sqlAddslashes(trim($for[1])) . '\')';
+ \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\',
+ \'' . PMA_sqlAddSlashes(trim($tab)) . '\',
+ \'' . PMA_sqlAddSlashes(trim($inf[0])) . '\',
+ \'' . PMA_sqlAddSlashes($GLOBALS['db']) . '\',
+ \'' . PMA_sqlAddSlashes(trim($for[0])) . '\',
+ \'' . PMA_sqlAddSlashes(trim($for[1])) . '\')';
PMA_importRunQuery($qry, $qry . '-- ' . htmlspecialchars($tab) . '.' . htmlspecialchars($inf[0]) . '(' . htmlspecialchars($inf[2]) . ')', true);
} // end inf[2] exists
} // End lines loop
diff --git a/libraries/import/ldi.php b/libraries/import/ldi.php
index 56dabf90d5..fe5264c3c7 100644
--- a/libraries/import/ldi.php
+++ b/libraries/import/ldi.php
@@ -63,7 +63,7 @@ $sql = 'LOAD DATA';
if (isset($ldi_local_option)) {
$sql .= ' LOCAL';
}
-$sql .= ' INFILE \'' . PMA_sqlAddslashes($import_file) . '\'';
+$sql .= ' INFILE \'' . PMA_sqlAddSlashes($import_file) . '\'';
if (isset($ldi_replace)) {
$sql .= ' REPLACE';
} elseif (isset($ldi_ignore)) {
@@ -75,10 +75,10 @@ if (strlen($ldi_terminated) > 0) {
$sql .= ' FIELDS TERMINATED BY \'' . $ldi_terminated . '\'';
}
if (strlen($ldi_enclosed) > 0) {
- $sql .= ' ENCLOSED BY \'' . PMA_sqlAddslashes($ldi_enclosed) . '\'';
+ $sql .= ' ENCLOSED BY \'' . PMA_sqlAddSlashes($ldi_enclosed) . '\'';
}
if (strlen($ldi_escaped) > 0) {
- $sql .= ' ESCAPED BY \'' . PMA_sqlAddslashes($ldi_escaped) . '\'';
+ $sql .= ' ESCAPED BY \'' . PMA_sqlAddSlashes($ldi_escaped) . '\'';
}
if (strlen($ldi_new_line) > 0){
if ($ldi_new_line == 'auto') {
diff --git a/libraries/js_escape.lib.php b/libraries/js_escape.lib.php
index 0773eecce1..f7e8fb3a42 100644
--- a/libraries/js_escape.lib.php
+++ b/libraries/js_escape.lib.php
@@ -13,11 +13,6 @@
* This function is used to displays a javascript confirmation box for
* "DROP/DELETE/ALTER" queries.
*
- * @uses PMA_escapeJsString()
- * @uses PMA_backquote()
- * @uses is_string()
- * @uses htmlspecialchars()
- * @uses str_replace()
* @param string $a_string the string to format
* @param boolean $add_backquotes whether to add backquotes to the string or not
*
@@ -47,8 +42,6 @@ function PMA_jsFormat($a_string = '', $add_backquotes = true)
* We also remove NUL byte as some browsers (namely MSIE) ignore it and
* inserting it anywhere inside ">bar
*
- * @uses preg_replace()
- * @uses strtr()
* @param string the message
* @param boolean whether to escape html in result
*
diff --git a/libraries/schema/Dia_Relation_Schema.class.php b/libraries/schema/Dia_Relation_Schema.class.php
index f6050c7c59..bccf2147a1 100644
--- a/libraries/schema/Dia_Relation_Schema.class.php
+++ b/libraries/schema/Dia_Relation_Schema.class.php
@@ -184,8 +184,6 @@ class PMA_DIA extends XMLWriter
* and helps in drawing/generating the Tables in dia XML document.
*
* @name Table_Stats
- * @copyright
- * @license
* @see PMA_DIA
*/
class Table_Stats
@@ -242,8 +240,8 @@ class Table_Stats
$sql = 'SELECT x, y FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE);
if (!$result || !PMA_DBI_num_rows($result)) {
@@ -435,8 +433,6 @@ class Table_Stats
* in dia XML document.
*
* @name Relation_Stats
- * @copyright
- * @license
* @see PMA_DIA
*/
class Relation_Stats
@@ -636,8 +632,6 @@ class Relation_Stats
* to this class
*
* @name Dia_Relation_Schema
- * @copyright
- * @license
*/
class PMA_Dia_Relation_Schema extends PMA_Export_Relation_Schema
{
diff --git a/libraries/schema/Eps_Relation_Schema.class.php b/libraries/schema/Eps_Relation_Schema.class.php
index ca8699a72f..50ea7e3f27 100644
--- a/libraries/schema/Eps_Relation_Schema.class.php
+++ b/libraries/schema/Eps_Relation_Schema.class.php
@@ -347,8 +347,6 @@ class PMA_EPS
* and helps in drawing/generating the Tables in EPS.
*
* @name Table_Stats
- * @copyright
- * @license
* @see PMA_EPS
*/
class Table_Stats
@@ -429,8 +427,8 @@ class Table_Stats
// x and y
$sql = 'SELECT x, y FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE);
@@ -550,8 +548,6 @@ class Table_Stats
* in EPS document.
*
* @name Relation_Stats
- * @copyright
- * @license
* @see PMA_EPS
*/
class Relation_Stats
@@ -715,8 +711,6 @@ class Relation_Stats
* to this class
*
* @name Eps_Relation_Schema
- * @copyright
- * @license
*/
class PMA_Eps_Relation_Schema extends PMA_Export_Relation_Schema
{
diff --git a/libraries/schema/Export_Relation_Schema.class.php b/libraries/schema/Export_Relation_Schema.class.php
index 6c9cca7230..bfdb0636ba 100644
--- a/libraries/schema/Export_Relation_Schema.class.php
+++ b/libraries/schema/Export_Relation_Schema.class.php
@@ -162,7 +162,7 @@ class PMA_Export_Relation_Schema
global $cfgRelation;
// Get All tables
$tab_sql = 'SELECT table_name FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$tab_rs = PMA_query_as_controluser($tab_sql, null, PMA_DBI_QUERY_STORE);
@@ -170,7 +170,7 @@ class PMA_Export_Relation_Schema
$this->dieSchema('',__('This page does not contain any tables!'));
}
while ($curr_table = @PMA_DBI_fetch_assoc($tab_rs)) {
- $alltables[] = PMA_sqlAddslashes($curr_table['table_name']);
+ $alltables[] = PMA_sqlAddSlashes($curr_table['table_name']);
}
return $alltables;
}
diff --git a/libraries/schema/Pdf_Relation_Schema.class.php b/libraries/schema/Pdf_Relation_Schema.class.php
index d0b8b64751..4e89f0bd93 100644
--- a/libraries/schema/Pdf_Relation_Schema.class.php
+++ b/libraries/schema/Pdf_Relation_Schema.class.php
@@ -219,7 +219,7 @@ class PMA_PDF extends TCPDF
global $cfgRelation, $db, $pdf_page_number, $with_doc;
if ($with_doc) {
$test_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
. ' AND page_nr = \'' . $pdf_page_number . '\'';
$test_rs = PMA_query_as_controluser($test_query);
$pages = @PMA_DBI_fetch_assoc($test_rs);
@@ -438,8 +438,6 @@ class PMA_PDF extends TCPDF
* and helps in drawing/generating the Tables in PDF document.
*
* @name Table_Stats
- * @copyright
- * @license
* @see PMA_PDF
*/
class Table_Stats
@@ -512,8 +510,8 @@ class Table_Stats
}
$sql = 'SELECT x, y FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE);
if (!$result || !PMA_DBI_num_rows($result)) {
@@ -652,8 +650,6 @@ class Table_Stats
* in PDF document.
*
* @name Relation_Stats
- * @copyright
- * @license
* @see PMA_PDF::SetDrawColor,PMA_PDF::PMA_PDF_setLineWidthScale,PMA_PDF::PMA_PDF_lineScale
*/
class Relation_Stats
@@ -797,8 +793,6 @@ class Relation_Stats
* to this class
*
* @name Pdf_Relation_Schema
- * @copyright
- * @license
*/
class PMA_Pdf_Relation_Schema extends PMA_Export_Relation_Schema
{
diff --git a/libraries/schema/Svg_Relation_Schema.class.php b/libraries/schema/Svg_Relation_Schema.class.php
index 03c8805b45..c845efe937 100644
--- a/libraries/schema/Svg_Relation_Schema.class.php
+++ b/libraries/schema/Svg_Relation_Schema.class.php
@@ -317,8 +317,6 @@ class PMA_SVG extends XMLWriter
* and helps in drawing/generating the Tables in SVG XML document.
*
* @name Table_Stats
- * @copyright
- * @license
* @see PMA_SVG
*/
class Table_Stats
@@ -399,8 +397,8 @@ class Table_Stats
// x and y
$sql = 'SELECT x, y FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE);
@@ -527,8 +525,6 @@ class Table_Stats
* in SVG XML document.
*
* @name Relation_Stats
- * @copyright
- * @license
* @see PMA_SVG::printElementLine
*/
class Relation_Stats
@@ -691,8 +687,6 @@ class Relation_Stats
* to this class
*
* @name Svg_Relation_Schema
- * @copyright
- * @license
*/
class PMA_Svg_Relation_Schema extends PMA_Export_Relation_Schema
{
diff --git a/libraries/schema/User_Schema.class.php b/libraries/schema/User_Schema.class.php
index b9aeff3b61..acb8672ba8 100644
--- a/libraries/schema/User_Schema.class.php
+++ b/libraries/schema/User_Schema.class.php
@@ -134,7 +134,7 @@ class PMA_User_Schema
{
global $db,$table,$query_default_option,$cfgRelation;
$page_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'';
$page_rs = PMA_query_as_controluser($page_query, false, $query_default_option);
if ($page_rs && PMA_DBI_num_rows($page_rs) > 0) {
?>
@@ -207,8 +207,8 @@ class PMA_User_Schema
chosenPage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\'';
$page_rs = PMA_query_as_controluser($page_query, false, $query_default_option);
$array_sh_page = array();
while ($temp_sh_page = @PMA_DBI_fetch_assoc($page_rs)) {
@@ -538,9 +538,9 @@ class PMA_User_Schema
{
foreach ($delrow as $current_row) {
$del_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' ' . "\n"
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'' . "\n"
- . ' AND table_name = \'' . PMA_sqlAddslashes($current_row) . '\'' . "\n"
- . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($chpage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'' . "\n"
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($current_row) . '\'' . "\n"
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($chpage) . '\'';
echo $del_query;
PMA_query_as_controluser($del_query, false, $query_default_option);
}
@@ -583,8 +583,8 @@ class PMA_User_Schema
public function deleteCoordinates($db, $cfgRelation, $choosePage, $query_default_option)
{
$query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($choosePage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($choosePage) . '\'';
PMA_query_as_controluser($query, false, $query_default_option);
}
@@ -600,8 +600,8 @@ class PMA_User_Schema
public function deletePages($db, $cfgRelation, $choosePage, $query_default_option)
{
$query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND page_nr = \'' . PMA_sqlAddslashes($choosePage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND page_nr = \'' . PMA_sqlAddSlashes($choosePage) . '\'';
PMA_query_as_controluser($query, false, $query_default_option);
}
@@ -732,7 +732,7 @@ class PMA_User_Schema
*/
$insert_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
. '(db_name, table_name, pdf_page_number, x, y) '
- . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($current_table) . '\',' . $pageNumber . ',' . $pos_x . ',' . $pos_y . ')';
+ . 'VALUES (\'' . PMA_sqlAddSlashes($db) . '\', \'' . PMA_sqlAddSlashes($current_table) . '\',' . $pageNumber . ',' . $pos_x . ',' . $pos_y . ')';
PMA_query_as_controluser($insert_query, false, $query_default_option);
/*
@@ -785,28 +785,28 @@ class PMA_User_Schema
}
if (isset($arrvalue['name']) && $arrvalue['name'] != '--') {
$test_query = 'SELECT * FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
- . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\''
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\'';
$test_rs = PMA_query_as_controluser($test_query, false, $query_default_option);
//echo $test_query;
if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) {
if (isset($arrvalue['delete']) && $arrvalue['delete'] == 'y') {
$ch_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
- . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\''
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\'';
} else {
$ch_query = 'UPDATE ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
. 'SET x = ' . $arrvalue['x'] . ', y= ' . $arrvalue['y']
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($arrvalue['name']) . '\''
- . ' AND pdf_page_number = \'' . PMA_sqlAddslashes($this->chosenPage) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\''
+ . ' AND pdf_page_number = \'' . PMA_sqlAddSlashes($this->chosenPage) . '\'';
}
} else {
$ch_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']) . ' '
. '(db_name, table_name, pdf_page_number, x, y) '
- . 'VALUES (\'' . PMA_sqlAddslashes($db) . '\', \'' . PMA_sqlAddslashes($arrvalue['name']) . '\', \'' . PMA_sqlAddslashes($this->chosenPage) . '\',' . $arrvalue['x'] . ',' . $arrvalue['y'] . ')';
+ . 'VALUES (\'' . PMA_sqlAddSlashes($db) . '\', \'' . PMA_sqlAddSlashes($arrvalue['name']) . '\', \'' . PMA_sqlAddSlashes($this->chosenPage) . '\',' . $arrvalue['x'] . ',' . $arrvalue['y'] . ')';
}
//echo $ch_query;
PMA_query_as_controluser($ch_query, false, $query_default_option);
diff --git a/libraries/schema/Visio_Relation_Schema.class.php b/libraries/schema/Visio_Relation_Schema.class.php
index f8d17e8b2a..011e73ef90 100644
--- a/libraries/schema/Visio_Relation_Schema.class.php
+++ b/libraries/schema/Visio_Relation_Schema.class.php
@@ -243,8 +243,8 @@ class Table_Stats
// x and y
$sql = 'SELECT x, y FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($tableName) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($tableName) . '\''
. ' AND pdf_page_number = ' . $pageNumber;
$result = PMA_query_as_controluser($sql, false, PMA_DBI_QUERY_STORE);
@@ -469,8 +469,6 @@ class Relation_Stats
* to this class
*
* @name Visio_Relation_Schema
- * @copyright
- * @license
*/
class PMA_Visio_Relation_Schema extends PMA_Export_Relation_Schema
{
diff --git a/libraries/select_lang.lib.php b/libraries/select_lang.lib.php
index 85e1828547..7d1de467be 100644
--- a/libraries/select_lang.lib.php
+++ b/libraries/select_lang.lib.php
@@ -26,18 +26,6 @@ function PMA_langName($tmplang) {
/**
* tries to find the language to use
*
- * @uses $GLOBALS['cfg']['lang']
- * @uses $GLOBALS['cfg']['DefaultLang']
- * @uses $GLOBALS['lang_failed_cfg']
- * @uses $GLOBALS['lang_failed_cookie']
- * @uses $GLOBALS['lang_failed_request']
- * @uses $_REQUEST['lang']
- * @uses $_COOKIE['pma_lang']
- * @uses $_SERVER['HTTP_ACCEPT_LANGUAGE']
- * @uses $_SERVER['HTTP_USER_AGENT']
- * @uses PMA_langSet()
- * @uses PMA_langDetect()
- * @uses explode()
* @return bool success if valid lang is found, otherwise false
*/
function PMA_langCheck()
@@ -114,8 +102,6 @@ function PMA_langCheck()
* checks given lang and sets it if valid
* returns true on success, otherwise flase
*
- * @uses $GLOBALS['available_languages'] to check $lang
- * @uses $GLOBALS['lang'] to set it
* @param string $lang language to set
* @return bool success
*/
@@ -140,7 +126,6 @@ function PMA_langSet(&$lang)
*
* @return bool true on success, otherwise false
*
- * @uses $GLOBALS['available_languages'] to check $lang
*
* @access private
*/
diff --git a/libraries/select_server.lib.php b/libraries/select_server.lib.php
index f71f7cde0c..68541d8ce6 100644
--- a/libraries/select_server.lib.php
+++ b/libraries/select_server.lib.php
@@ -9,12 +9,6 @@
/**
* display server selection in list or selectbox form, or option tags only
*
- * @uses $GLOBALS['cfg']['DisplayServersList']
- * @uses $GLOBALS['cfg']['Servers']
- * @uses implode()
- * @uses htmlspecialchars()
- * @uses PMA_generate_common_hidden_inputs()
- * @uses PMA_generate_common_url()
* @param boolean $not_only_options whether to include form tags or not
* @param boolean $ommit_fieldset whether to ommit fieldset tag or not
*/
diff --git a/libraries/server_common.inc.php b/libraries/server_common.inc.php
index 732017679b..5439011063 100644
--- a/libraries/server_common.inc.php
+++ b/libraries/server_common.inc.php
@@ -1,12 +1,6 @@
$value) {
- $insert_query .= "'" . PMA_sqlAddslashes($value) . "'";
+ $insert_query .= "'" . PMA_sqlAddSlashes($value) . "'";
if ($key < $key_of_last_value) {
$insert_query .= ",";
}
@@ -695,9 +677,6 @@ function PMA_populateTargetTables($src_db, $trg_db, $src_link, $trg_link, $uncom
}
/**
* PMA_deleteFromTargetTable() delete rows from target table
-* @uses sizeof()
-* @uses PMA_backquote()
-* @uses PMA_DBI_try_query()
*
*
* @param $trg_db name of target database
@@ -755,8 +734,6 @@ function PMA_deleteFromTargetTable($trg_db, $trg_link, $matching_tables, $table_
* Keys for all the source tables that have a corresponding target table are placed in $matching_tables_keys.
* Keys for all the target tables that have a corresponding source table are placed in $target_tables_keys.
*
-* @uses PMA_DBI_get_columns_full()
-* @uses sizeof()
*
* @param $src_db name of source database
* @param $trg_db name of target database
@@ -820,13 +797,6 @@ function PMA_structureDiffInTables($src_db, $trg_db, $src_link, $trg_link, $matc
}
/**
* PMA_addColumnsInTargetTable() adds column that are present in source table but not in target table
-* @uses sizeof()
-* @uses in_array()
-* @uses array_keys()
-* @uses PMA_checkForeignKeys()
-* @uses PMA_createTargetTables()
-* @uses PMA_DBI_try_query()
-* @uses PMA_DBI_fetch_result()
*
* @param $src_db name of source database
* @param $trg_db name of target database
@@ -924,10 +894,6 @@ function PMA_addColumnsInTargetTable($src_db, $trg_db, $src_link, $trg_link, $ma
}
/**
* PMA_checkForeignKeys() checks if the referenced table have foreign keys.
-* @uses sizeof()
-* @uses in_array()
-* @uses array_keys()
-* @uses PMA_checkForeignKeys()
* uses PMA_createTargetTables()
*
* @param $src_db name of source database
@@ -959,11 +925,6 @@ function PMA_checkForeignKeys($src_db, $src_link, $trg_db, $trg_link ,$reference
}
/**
* PMA_alterTargetTableStructure() alters structure of the target table using $alter_str_array
-* @uses sizeof()
-* @uses PMA_DBI_fetch_result()
-* @uses is_string()
-* @uses is_numeric()
-* @uses PMA_DBI_try_query()
*
*
* @param $trg_db name of target database
@@ -1099,9 +1060,6 @@ function PMA_alterTargetTableStructure($trg_db, $trg_link, $matching_tables, &$s
/**
* PMA_removeColumnsFromTargetTable() removes the columns which are present in target table but not in source table.
-* @uses sizeof()
-* @uses PMA_DBI_try_query()
-* @uses PMA_DBI_fetch_result()
*
* @param $trg_db name of target database
* @param $trg_link connection established with target server
@@ -1222,8 +1180,6 @@ function PMA_indexesDiffInTables($src_db, $trg_db, $src_link, $trg_link, $matchi
/**
* PMA_applyIndexesDiff() create indexes, alters indexes and remove indexes.
-* @uses sizeof()
-* @uses PMA_DBI_try_query()
*
* @param $trg_db name of target database
* @param $trg_link connection established with target server
@@ -1311,7 +1267,6 @@ function PMA_applyIndexesDiff ($trg_db, $trg_link, $matching_tables, $source_ind
/**
* PMA_displayQuery() displays a query, taking the maximum display size
* into account
- * @uses $GLOBALS['cfg']['MaxCharactersInDisplayedSQL']
*
* @param $query the query to display
*/
@@ -1324,8 +1279,6 @@ function PMA_displayQuery($query) {
/**
* PMA_syncDisplayHeaderSource() shows the header for source database
- * @uses $_SESSION['src_type']
- * @uses $_SESSION['src_server']['host']
*
* @param string $src_db source db name
*/
@@ -1347,8 +1300,6 @@ function PMA_syncDisplayHeaderSource($src_db) {
/**
* PMA_syncDisplayHeaderTargetAndMatchingTables() shows the header for target database and the matching tables
- * @uses $_SESSION['trg_type']
- * @uses $_SESSION['trg_server']['host']
*
* @param string $trg_db target db name
* @param array $matching_tables
diff --git a/libraries/session.inc.php b/libraries/session.inc.php
index 465e3f0332..a829172c91 100644
--- a/libraries/session.inc.php
+++ b/libraries/session.inc.php
@@ -6,9 +6,6 @@
* @todo add failover or warn if sessions are not configured properly
* @todo add an option to use mm-module for session handler
* @see http://www.php.net/session
- * @uses session_name()
- * @uses session_start()
- * @uses ini_set()
* @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
@@ -104,7 +101,6 @@ if (! isset($_SESSION[' PMA_token '])) {
* should be called before login and after successfull login
* (only required if sensitive information stored in session)
*
- * @uses session_regenerate_id() to secure session from fixation
*/
function PMA_secureSession()
{
diff --git a/libraries/sql_query_form.lib.php b/libraries/sql_query_form.lib.php
index 5dd48d2972..13d866e5fb 100644
--- a/libraries/sql_query_form.lib.php
+++ b/libraries/sql_query_form.lib.php
@@ -30,32 +30,6 @@ require_once './libraries/bookmark.lib.php'; // used for file listing
* @usedby tbl_structure.php
* @usedby tbl_tracking.php
* @usedby querywindow.php
- * @uses $GLOBALS['table']
- * @uses $GLOBALS['db']
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['goto']
- * @uses $GLOBALS['is_upload'] from common.inc.php
- * @uses $GLOBALS['sql_query'] from grab_globals.lib.php
- * @uses $GLOBALS['cfg']['DefaultQueryTable']
- * @uses $GLOBALS['cfg']['DefaultQueryDatabase']
- * @uses $GLOBALS['cfg']['Servers']
- * @uses $GLOBALS['cfg']['DefaultTabDatabase']
- * @uses $GLOBALS['cfg']['Bookmark']
- * @uses PMA_generate_common_url()
- * @uses PMA_backquote()
- * @uses PMA_DBI_fetch_result()
- * @uses PMA_showMySQLDocu()
- * @uses PMA_generate_common_hidden_inputs()
- * @uses PMA_sqlQueryFormBookmark()
- * @uses PMA_sqlQueryFormInsert()
- * @uses PMA_sqlQueryFormUpload()
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_set_enc_form()
- * @uses sprintf()
- * @uses htmlspecialchars()
- * @uses str_replace()
- * @uses md5()
- * @uses function_exists()
* @param boolean|string $query query to display in the textarea
* or true to display last executed
* @param boolean|string $display_tab sql|files|history|full|false
@@ -183,14 +157,6 @@ function PMA_sqlQueryForm($query = true, $display_tab = false, $delimiter = ';')
* prints querybox fieldset
*
* @usedby PMA_sqlQueryForm()
- * @uses $GLOBALS['text_dir']
- * @uses $GLOBALS['cfg']['TextareaAutoSelect']
- * @uses $GLOBALS['cfg']['TextareaCols']
- * @uses $GLOBALS['cfg']['TextareaRows']
- * @uses PMA_USR_OS
- * @uses PMA_USR_BROWSER_AGENT
- * @uses PMA_USR_BROWSER_VER
- * @uses htmlspecialchars()
* @param string $query query to display in the textarea
* @param boolean $is_querywindow if inside querywindow or not
* @param string $delimiter default delimiter to use
@@ -391,12 +357,6 @@ function PMA_sqlQueryFormInsert($query = '', $is_querywindow = false, $delimiter
* prints bookmark fieldset
*
* @usedby PMA_sqlQueryForm()
- * @uses PMA_Bookmark_getList()
- * @uses $GLOBALS['db']
- * @uses $GLOBALS['pmaThemeImage']
- * @uses $GLOBALS['cfg']['ReplaceHelpImg']
- * @uses count()
- * @uses htmlspecialchars()
*/
function PMA_sqlQueryFormBookmark()
{
@@ -460,18 +420,6 @@ function PMA_sqlQueryFormBookmark()
* prints bookmark fieldset
*
* @usedby PMA_sqlQueryForm()
- * @uses $GLOBALS['cfg']['GZipDump']
- * @uses $GLOBALS['cfg']['BZipDump']
- * @uses $GLOBALS['cfg']['UploadDir']
- * @uses $GLOBALS['cfg']['AvailableCharsets']
- * @uses $GLOBALS['max_upload_size']
- * @uses PMA_supportedDecompressions()
- * @uses PMA_getFileSelectOptions()
- * @uses PMA_displayMaximumUploadSize()
- * @uses PMA_generateCharsetDropdownBox()
- * @uses PMA_generateHiddenMaxFileSize()
- * @uses PMA_CSDROPDOWN_CHARSET
- * @uses empty()
*/
function PMA_sqlQueryFormUpload(){
$errors = array ();
diff --git a/libraries/string.lib.php b/libraries/string.lib.php
index 6c45a2270c..6e2d26d6fd 100644
--- a/libraries/string.lib.php
+++ b/libraries/string.lib.php
@@ -12,11 +12,6 @@
*
* The SQL Parser code relies heavily on these functions.
*
- * @uses extension_loaded()
- * @uses substr()
- * @uses function_exists()
- * @uses mb_internal_encoding()
- * @uses defined()
* @todo a .lib filename should not have code in main(), split or rename file
* @package phpMyAdmin
*/
@@ -62,10 +57,6 @@ if ($GLOBALS['PMA_allow_ctype']) {
/**
* Checks if a given character position in the string is escaped or not
*
- * @uses PMA_strlen()
- * @uses PMA_substr()
- * @uses max()
- * @uses intval()
* @param string string to check for
* @param integer the character to check for
* @param integer starting position in the string
@@ -110,7 +101,6 @@ function PMA_STR_numberInRangeInclusive($num, $lower, $upper)
/**
* Checks if a character is an SQL identifier
*
- * @uses PMA_STR_isAlnum()
* @param string character to check for
* @param boolean whether the dot character is valid or not
* @return boolean whether the character is an SQL identifier or not
diff --git a/libraries/string_type_ctype.lib.php b/libraries/string_type_ctype.lib.php
index b211dd59c3..590e59da0f 100644
--- a/libraries/string_type_ctype.lib.php
+++ b/libraries/string_type_ctype.lib.php
@@ -18,7 +18,6 @@
/**
* Checks if a character is an alphanumeric one
*
- * @uses ctype_alnum()
* @param string character to check for
* @return boolean whether the character is an alphanumeric one or not
*/
@@ -30,7 +29,6 @@ function PMA_STR_isAlnum($c)
/**
* Checks if a character is an alphabetic one
*
- * @uses ctype_alpha()
* @param string character to check for
* @return boolean whether the character is an alphabetic one or not
*/
@@ -42,7 +40,6 @@ function PMA_STR_isAlpha($c)
/**
* Checks if a character is a digit
*
- * @uses ctype_digit()
* @param string character to check for
* @return boolean whether the character is a digit or not
*/
@@ -54,7 +51,6 @@ function PMA_STR_isDigit($c)
/**
* Checks if a character is an upper alphabetic one
*
- * @uses ctype_upper()
* @param string character to check for
* @return boolean whether the character is an upper alphabetic one or not
*/
@@ -67,7 +63,6 @@ function PMA_STR_isUpper($c)
/**
* Checks if a character is a lower alphabetic one
*
- * @uses ctype_lower()
* @param string character to check for
* @return boolean whether the character is a lower alphabetic one or not
*/
@@ -79,7 +74,6 @@ function PMA_STR_isLower($c)
/**
* Checks if a character is a space one
*
- * @uses ctype_space()
* @param string character to check for
* @return boolean whether the character is a space one or not
*/
@@ -91,7 +85,6 @@ function PMA_STR_isSpace($c)
/**
* Checks if a character is an hexadecimal digit
*
- * @uses ctype_xdigit()
* @param string character to check for
* @return boolean whether the character is an hexadecimal digit or not
*/
diff --git a/libraries/string_type_native.lib.php b/libraries/string_type_native.lib.php
index a2c7f0e204..0bcb08fc3a 100644
--- a/libraries/string_type_native.lib.php
+++ b/libraries/string_type_native.lib.php
@@ -18,9 +18,6 @@
/**
* Checks if a character is an alphanumeric one
*
- * @uses PMA_STR_isUpper()
- * @uses PMA_STR_isLower()
- * @uses PMA_STR_isDigit()
* @param string character to check for
* @return boolean whether the character is an alphanumeric one or not
*/
@@ -32,8 +29,6 @@ function PMA_STR_isAlnum($c)
/**
* Checks if a character is an alphabetic one
*
- * @uses PMA_STR_isUpper()
- * @uses PMA_STR_isLower()
* @param string character to check for
* @return boolean whether the character is an alphabetic one or not
*/
@@ -45,8 +40,6 @@ function PMA_STR_isAlpha($c)
/**
* Checks if a character is a digit
*
- * @uses PMA_STR_numberInRangeInclusive()
- * @uses ord()
* @param string character to check for
* @return boolean whether the character is a digit or not
*/
@@ -62,8 +55,6 @@ function PMA_STR_isDigit($c)
/**
* Checks if a character is an upper alphabetic one
*
- * @uses PMA_STR_numberInRangeInclusive()
- * @uses ord()
* @param string character to check for
* @return boolean whether the character is an upper alphabetic one or not
*/
@@ -79,8 +70,6 @@ function PMA_STR_isUpper($c)
/**
* Checks if a character is a lower alphabetic one
*
- * @uses PMA_STR_numberInRangeInclusive()
- * @uses ord()
* @param string character to check for
* @return boolean whether the character is a lower alphabetic one or not
*/
@@ -96,8 +85,6 @@ function PMA_STR_isLower($c)
/**
* Checks if a character is a space one
*
- * @uses PMA_STR_numberInRangeInclusive()
- * @uses ord()
* @param string character to check for
* @return boolean whether the character is a space one or not
*/
@@ -117,8 +104,6 @@ function PMA_STR_isSpace($c)
/**
* Checks if a character is an hexadecimal digit
*
- * @uses PMA_STR_numberInRangeInclusive()
- * @uses ord()
* @param string character to check for
* @return boolean whether the character is an hexadecimal digit or not
*/
diff --git a/libraries/tbl_replace_fields.inc.php b/libraries/tbl_replace_fields.inc.php
index e1d98c895b..32da9c085d 100644
--- a/libraries/tbl_replace_fields.inc.php
+++ b/libraries/tbl_replace_fields.inc.php
@@ -18,15 +18,6 @@
* note: grab_globals has extracted the fields from _FILES or HTTP_POST_FILES
*
*
- * @uses $_REQUEST
- * @uses defined()
- * @uses define()
- * @uses bin2hex()
- * @uses strlen()
- * @uses md5()
- * @uses implode()
- * @uses PMA_NO_VARIABLES_IMPORT
- * @uses PMA_sqlAddslashes()
* @package phpMyAdmin
*/
if (! defined('PHPMYADMIN')) {
@@ -78,7 +69,7 @@ if (false !== $possibly_uploaded_val) {
} elseif ($type == 'set') {
if (! empty($_REQUEST['fields']['multi_edit'][$rownumber][$key])) {
$val = implode(',', $_REQUEST['fields']['multi_edit'][$rownumber][$key]);
- $val = "'" . PMA_sqlAddslashes($val) . "'";
+ $val = "'" . PMA_sqlAddSlashes($val) . "'";
}
} elseif ($type == 'protected') {
// here we are in protected mode (asked in the config)
@@ -96,9 +87,9 @@ if (false !== $possibly_uploaded_val) {
}
} elseif ($type == 'bit') {
$val = preg_replace('/[^01]/', '0', $val);
- $val = "b'" . PMA_sqlAddslashes($val) . "'";
+ $val = "b'" . PMA_sqlAddSlashes($val) . "'";
} elseif (! (($type == 'datetime' || $type == 'timestamp') && $val == 'CURRENT_TIMESTAMP')) {
- $val = "'" . PMA_sqlAddslashes($val) . "'";
+ $val = "'" . PMA_sqlAddSlashes($val) . "'";
}
// Was the Null checkbox checked for this field?
diff --git a/libraries/transformations.lib.php b/libraries/transformations.lib.php
index 7148003b53..e58ecf8bc1 100644
--- a/libraries/transformations.lib.php
+++ b/libraries/transformations.lib.php
@@ -19,14 +19,6 @@
* // }
*
*
- * @uses preg_split()
- * @uses array_shift()
- * @uses trim()
- * @uses rtrim()
- * @uses ltrim()
- * @uses strlen()
- * @uses substr()
- * @uses stripslashes()
* @param string $option_string comma separated options
* @return array options
*/
@@ -70,13 +62,6 @@ function PMA_transformation_getOptions($option_string)
* Gets all available MIME-types
*
* @access public
- * @uses opendir()
- * @uses readdir()
- * @uses closedir()
- * @uses sort()
- * @uses preg_match()
- * @uses explode()
- * @uses str_replace()
* @staticvar array mimetypes
* @return array array[mimetype], array[transformation]
*/
@@ -132,11 +117,6 @@ function PMA_getAvailableMIMEtypes()
/**
* Gets the mimetypes for all columns of a table
*
- * @uses $GLOBALS['controllink']
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_DBI_fetch_result()
* @access public
* @param string $db the name of the db to check for
* @param string $table the name of the table to check for
@@ -157,8 +137,8 @@ function PMA_getMIME($db, $table, $strict = false)
`transformation`,
`transformation_options`
FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . '
- WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\'
- AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\'
+ WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\'
+ AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\'
AND ( `mimetype` != \'\'' . (!$strict ? '
OR `transformation` != \'\'
OR `transformation_options` != \'\'' : '') . ')';
@@ -168,15 +148,6 @@ function PMA_getMIME($db, $table, $strict = false)
/**
* Set a single mimetype to a certain value.
*
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_query_as_controluser()
- * @uses PMA_DBI_num_rows()
- * @uses PMA_DBI_fetch_assoc()
- * @uses PMA_DBI_free_result()
- * @uses strlen()
* @access public
* @param string $db the name of the db
* @param string $table the name of the table
@@ -200,9 +171,9 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation,
SELECT `mimetype`,
`comment`
FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . '
- WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\'
- AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\'
- AND `column_name` = \'' . PMA_sqlAddslashes($key) . '\'';
+ WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\'
+ AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\'
+ AND `column_name` = \'' . PMA_sqlAddSlashes($key) . '\'';
$test_rs = PMA_query_as_controluser($test_qry, true, PMA_DBI_QUERY_STORE);
if ($test_rs && PMA_DBI_num_rows($test_rs) > 0) {
@@ -214,27 +185,27 @@ function PMA_setMIME($db, $table, $key, $mimetype, $transformation,
|| strlen($transformation_options) || strlen($row['comment']))) {
$upd_query = '
UPDATE ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']) . '
- SET `mimetype` = \'' . PMA_sqlAddslashes($mimetype) . '\',
- `transformation` = \'' . PMA_sqlAddslashes($transformation) . '\',
- `transformation_options` = \'' . PMA_sqlAddslashes($transformation_options) . '\'';
+ SET `mimetype` = \'' . PMA_sqlAddSlashes($mimetype) . '\',
+ `transformation` = \'' . PMA_sqlAddSlashes($transformation) . '\',
+ `transformation_options` = \'' . PMA_sqlAddSlashes($transformation_options) . '\'';
} else {
$upd_query = 'DELETE FROM ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info']);
}
$upd_query .= '
- WHERE `db_name` = \'' . PMA_sqlAddslashes($db) . '\'
- AND `table_name` = \'' . PMA_sqlAddslashes($table) . '\'
- AND `column_name` = \'' . PMA_sqlAddslashes($key) . '\'';
+ WHERE `db_name` = \'' . PMA_sqlAddSlashes($db) . '\'
+ AND `table_name` = \'' . PMA_sqlAddSlashes($table) . '\'
+ AND `column_name` = \'' . PMA_sqlAddSlashes($key) . '\'';
} elseif (strlen($mimetype) || strlen($transformation)
|| strlen($transformation_options)) {
$upd_query = 'INSERT INTO ' . PMA_backquote($cfgRelation['db']) . '.' . PMA_backquote($cfgRelation['column_info'])
. ' (db_name, table_name, column_name, mimetype, transformation, transformation_options) '
. ' VALUES('
- . '\'' . PMA_sqlAddslashes($db) . '\','
- . '\'' . PMA_sqlAddslashes($table) . '\','
- . '\'' . PMA_sqlAddslashes($key) . '\','
- . '\'' . PMA_sqlAddslashes($mimetype) . '\','
- . '\'' . PMA_sqlAddslashes($transformation) . '\','
- . '\'' . PMA_sqlAddslashes($transformation_options) . '\')';
+ . '\'' . PMA_sqlAddSlashes($db) . '\','
+ . '\'' . PMA_sqlAddSlashes($table) . '\','
+ . '\'' . PMA_sqlAddSlashes($key) . '\','
+ . '\'' . PMA_sqlAddSlashes($mimetype) . '\','
+ . '\'' . PMA_sqlAddSlashes($transformation) . '\','
+ . '\'' . PMA_sqlAddSlashes($transformation_options) . '\')';
}
if (isset($upd_query)){
diff --git a/libraries/url_generating.lib.php b/libraries/url_generating.lib.php
index 069e4b439b..c8b343b6f1 100644
--- a/libraries/url_generating.lib.php
+++ b/libraries/url_generating.lib.php
@@ -10,7 +10,6 @@
* Generates text with hidden inputs.
*
* @see PMA_generate_common_url()
- * @uses PMA_getHiddenFields
* @param string optional database name
* (can also be an array of parameters)
* @param string optional table name
@@ -161,19 +160,6 @@ function PMA_getHiddenFields($values, $pre = '')
* // script.php?server=1&lang=en
*
*
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['cfg']['ServerDefault']
- * @uses $_COOKIE['pma_lang']
- * @uses $GLOBALS['lang']
- * @uses $_COOKIE['pma_collation_connection']
- * @uses $GLOBALS['collation_connection']
- * @uses $_SESSION[' PMA_token ']
- * @uses PMA_get_arg_separator()
- * @uses is_array()
- * @uses strlen()
- * @uses htmlentities()
- * @uses urlencode()
- * @uses implode()
* @param mixed assoc. array with url params or optional string with database name
* if first param is an array there is also an ? prefixed to the url
*
@@ -270,9 +256,6 @@ function PMA_generate_common_url()
* extracted from arg_separator.input as set in php.ini
* we do not use arg_separator.output to avoid problems with & and &
*
- * @uses ini_get()
- * @uses strpos()
- * @uses strlen()
* @param string whether to encode separator or not, currently 'none' or 'html'
* @return string character used for separating url parts usally ; or &
* @access public
diff --git a/libraries/user_preferences.lib.php b/libraries/user_preferences.lib.php
index 3fb8c1b1d1..2246a4df8f 100644
--- a/libraries/user_preferences.lib.php
+++ b/libraries/user_preferences.lib.php
@@ -9,12 +9,6 @@
/**
* Common initialization for user preferences modification pages
*
- * @uses ConfigFile::getInstance()
- * @uses ConfigFile::resetConfigData()
- * @uses ConfigFile::setAllowedKeys()
- * @uses ConfigFile::setCfgUpdateReadMapping()
- * @uses ConfigFile::updateWithGlobalConfig()
- * @uses PMA_read_userprefs_fieldnames()
*/
function PMA_userprefs_pageinit()
{
@@ -36,14 +30,6 @@ function PMA_userprefs_pageinit()
* * mtime - last modification time
* * type - 'db' (config read from pmadb) or 'session' (read from user session)
*
- * @uses $_SESSION['userconfig']
- * @uses $GLOBALS['controllink']
- * @uses PMA_array_merge_recursive
- * @uses PMA_backquote()
- * @uses PMA_DBI_fetch_single_row()
- * @uses PMA_getRelationsParam()
- * @uses PMA_sqlAddslashes()
- * @uses $GLOBALS['controllink']
* @return array
*/
function PMA_load_userprefs()
@@ -66,7 +52,7 @@ function PMA_load_userprefs()
$query = '
SELECT `config_data`, UNIX_TIMESTAMP(`timevalue`) ts
FROM ' . $query_table . '
- WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\'';
+ WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\'';
$row = PMA_DBI_fetch_single_row($query, 'ASSOC', $GLOBALS['controllink']);
return array(
@@ -78,22 +64,6 @@ function PMA_load_userprefs()
/**
* Saves user preferences
*
- * @uses $_SESSION['cache'][...]['userprefs']
- * @uses $_SESSION['userconfig']
- * @uses $GLOBALS['cfg']['ServerDefault']
- * @uses $GLOBALS['controllink']
- * @uses $GLOBALS['server']
- * @uses ConfigFile::getConfigArray()
- * @uses ConfigFile::getInstance()
- * @uses PMA_backquote()
- * @uses PMA_DBI_fetch_value
- * @uses PMA_DBI_getError()
- * @uses PMA_DBI_try_query()
- * @uses PMA_Message::addMessage()
- * @uses PMA_Message::error()
- * @uses PMA_Message::rawError()
- * @uses PMA_sqlAddslashes()
- * @uses PMA_getRelationsParam()
* @param array $config_data
* @return true|PMA_Message
*/
@@ -120,20 +90,20 @@ function PMA_save_userprefs(array $config_array)
$query = '
SELECT `username`
FROM ' . $query_table . '
- WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\'';
+ WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\'';
$has_config = PMA_DBI_fetch_value($query, 0, 0, $GLOBALS['controllink']);
$config_data = json_encode($config_array);
if ($has_config) {
$query = '
UPDATE ' . $query_table . '
- SET `config_data` = \'' . PMA_sqlAddslashes($config_data) . '\'
- WHERE `username` = \'' . PMA_sqlAddslashes($cfgRelation['user']) . '\'';
+ SET `config_data` = \'' . PMA_sqlAddSlashes($config_data) . '\'
+ WHERE `username` = \'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\'';
} else {
$query = '
INSERT INTO ' . $query_table . ' (`username`, `config_data`)
- VALUES (\'' . PMA_sqlAddslashes($cfgRelation['user']) . '\',
- \'' . PMA_sqlAddslashes($config_data) . '\')';
+ VALUES (\'' . PMA_sqlAddSlashes($cfgRelation['user']) . '\',
+ \'' . PMA_sqlAddSlashes($config_data) . '\')';
}
if (isset($_SESSION['cache'][$cache_key]['userprefs'])) {
unset($_SESSION['cache'][$cache_key]['userprefs']);
@@ -151,8 +121,6 @@ function PMA_save_userprefs(array $config_array)
* Returns a user preferences array filtered by $cfg['UserprefsDisallow']
* (blacklist) and keys from user preferences form (whitelist)
*
- * @uses PMA_array_write()
- * @uses PMA_read_userprefs_fieldnames()
* @param array $config_data path => value pairs
* @return array
*/
@@ -217,8 +185,6 @@ function PMA_read_userprefs_fieldnames(array $forms = null)
*
* No validation is done!
*
- * @uses PMA_load_userprefs()
- * @uses PMA_save_userprefs()
* @param string $cfg_name
* @param mixed $value
* @return void
@@ -241,10 +207,6 @@ function PMA_persist_option($path, $value, $default_value)
/**
* Redirects after saving new user preferences
*
- * @uses ConfigFile::getConfigArray()
- * @uses ConfigFile::getInstance()
- * @uses PMA_generate_common_url()
- * @uses PMA_sendHeaderLocation()
* @param array $forms
* @param array $old_settings
* @param string $file_name
@@ -287,9 +249,6 @@ function PMA_userprefs_redirect(array $forms, array $old_settings, $file_name, $
/**
* Shows form which allows to quickly load settings stored in browser's local storage
*
- * @uses $_REQUEST['prefs_autoload']
- * @uses $_SESSION['userprefs_autoload']
- * @uses PMA_generate_common_hidden_inputs()
*/
function PMA_userprefs_autoload_header()
{
diff --git a/navigation.php b/navigation.php
index 673d49d9e2..17aec64dea 100644
--- a/navigation.php
+++ b/navigation.php
@@ -4,34 +4,6 @@
* the navigation frame - displays server, db and table selection tree
*
* @package phpMyAdmin
- * @uses $GLOBALS['pma']->databases
- * @uses $GLOBALS['server']
- * @uses $GLOBALS['db']
- * @uses $GLOBALS['table']
- * @uses $GLOBALS['available_languages']
- * @uses $GLOBALS['lang']
- * @uses $GLOBALS['text_dir']
- * @uses $GLOBALS['pmaThemeImage']
- * @uses $GLOBALS['cfg']['LeftFrameLight']
- * @uses $GLOBALS['cfg']['ShowTooltip']
- * @uses $GLOBALS['cfg']['ShowTooltipAliasDB']
- * @uses $GLOBALS['cfg']['DefaultTabDatabase']
- * @uses $GLOBALS['cfgRelation']['commwork']) {
- * @uses PMA_List_Database::getSingleItem()
- * @uses PMA_List_Database::getHtmlSelectGrouped()
- * @uses PMA_List_Database::getGroupedDetails()
- * @uses PMA_generate_common_url()
- * @uses PMA_generate_common_hidden_inputs()
- * @uses PMA_getDbComment();
- * @uses PMA_getTableCount()
- * @uses PMA_getTableList()
- * @uses PMA_getRelationsParam()
- * @uses PMA_outBufferPre()
- * @uses strlen()
- * @uses session_write_close()
- * @uses is_array()
- * @uses implode()
- * @uses htmlspecialchars()
*/
/**
@@ -42,8 +14,6 @@ require_once './libraries/common.inc.php';
/**
* finish and cleanup navigation.php script execution, only to be used in navigation.php
*
- * @uses $GLOBALS['controllink'] to close it
- * @uses $GLOBALS['userlink'] to close it
* @access private
*/
function PMA_exitNavigationFrame()
@@ -354,15 +324,6 @@ if ($GLOBALS['cfg']['LeftFrameLight'] && strlen($GLOBALS['db'])) {
/**
* displays collapsable db list
*
- * @uses $_REQUEST['dbgroup']
- * @uses $GLOBALS['cfg']['DefaultTabDatabase']
- * @uses strpos()
- * @uses urlencode()
- * @uses printf()
- * @uses htmlspecialchars()
- * @uses PMA_generate_common_url()
- * @uses PMA_getTableList()
- * @uses PMA_displayTableList()
* @global integer $element_counter
* @global string $img_minus
* @global string $img_plus
@@ -532,22 +493,6 @@ function PMA_displayDbList($ext_dblist, $offset, $count) {
* calls itself recursively if table in given list
* is a list itself
*
- * @uses is_array()
- * @uses count()
- * @uses urlencode()
- * @uses strpos()
- * @uses printf()
- * @uses htmlspecialchars()
- * @uses strlen()
- * @uses is_array()
- * @uses PMA_displayTableList()
- * @uses $_REQUEST['tbl_group']
- * @uses $GLOBALS['common_url_query']
- * @uses $GLOBALS['table']
- * @uses $GLOBALS['pmaThemeImage']
- * @uses $GLOBALS['cfg']['LeftFrameTableSeparator']
- * @uses $GLOBALS['cfg']['DefaultTabDatabase']
- * @uses $GLOBALS['cfg']['DefaultTabTable']
* @global integer the element counter
* @global string html code for '-' image
* @global string html code for '+' image
diff --git a/pmd_common.php b/pmd_common.php
index 951db5559f..783f6fa3c4 100644
--- a/pmd_common.php
+++ b/pmd_common.php
@@ -23,16 +23,6 @@ $GLOBALS['script_display_field'] =
/**
* retrieves table info and stores it in $GLOBALS['PMD']
*
- * @uses $GLOBALS['script_display_field']
- * @uses $GLOBALS['PMD'] to fill it
- * @uses $GLOBALS['db']
- * @uses PMA_DBI_get_tables_full()
- * @uses PMA_DBI_select_db()
- * @uses PMA_getDisplayField()
- * @uses urlencode()
- * @uses htmlspecialchars()
- * @uses strtoupper()
- * @uses urlencode()
*/
function get_tabs()
{
@@ -78,13 +68,6 @@ function get_tabs()
/**
* retrieves table column info
*
- * @uses $GLOBALS['db']
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_select_db()
- * @uses PMA_DBI_query()
- * @uses PMA_DBI_num_rows()
- * @uses PMA_backquote()
- * @uses count()
* @return array table column nfo
*/
function get_tab_info()
@@ -108,16 +91,6 @@ function get_tab_info()
/**
* returns JavaScript code for intializing vars
*
- * @uses $GLOBALS['db']
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_DBI_select_db()
- * @uses PMA_DBI_query()
- * @uses PMA_backquote()
- * @uses PMA_DBI_fetch_row()
- * @uses PMA_getForeigners()
- * @uses urlencode()
- * @uses count()
- * @uses in_array()
* @return string JavaScript code
*/
function get_script_contr()
@@ -184,7 +157,6 @@ function get_script_contr()
}
/**
- * @uses get_all_keys()
* @return array unique or primary indizes
*/
function get_pk_or_unique_keys()
@@ -195,10 +167,6 @@ function get_pk_or_unique_keys()
/**
* returns all indizes
*
- * @uses $GLOBALS['PMD']
- * @uses PMA_Index::getFromTable()
- * @uses PMA_Index->isUnique()
- * @uses PMA_Index->getColumns()
* @param boolean whether to include ony unique ones
* @return array indizes
*/
@@ -227,9 +195,6 @@ function get_all_keys($unique_only = false)
/**
*
*
- * @uses $GLOBALS['PMD']
- * @uses count()
- * @uses in_array()
* @return array ???
*/
function get_script_tabs()
@@ -251,15 +216,6 @@ function get_script_tabs()
}
/**
- * @uses $GLOBALS['controllink']
- * @uses $cfgRelation['designerwork']
- * @uses $cfgRelation['db']
- * @uses $cfgRelation['designer_coords']
- * @uses PMA_DBI_QUERY_STORE
- * @uses PMA_getRelationsParam()
- * @uses PMA_backquote()
- * @uses PMA_DBI_fetch_result()
- * @uses count()
* @return array table positions and sizes
*/
function get_tab_pos()
@@ -284,9 +240,6 @@ function get_tab_pos()
/**
* returns distinct values from $GLOBALS['PMD']['OWNER']
*
- * @uses array_values()
- * @uses array_unique()
- * @uses $GLOBALS['PMD']['OWNER']
* @return array owner
*/
function get_owners()
diff --git a/pmd_display_field.php b/pmd_display_field.php
index 21ef7f26ce..0e51cd70c3 100644
--- a/pmd_display_field.php
+++ b/pmd_display_field.php
@@ -19,21 +19,21 @@ if ($cfgRelation['displaywork']) {
if ($disp) {
if ($display_field != $disp) {
$upd_query = 'UPDATE ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info'])
- . ' SET display_field = \'' . PMA_sqlAddslashes($display_field) . '\''
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($table) . '\'';
+ . ' SET display_field = \'' . PMA_sqlAddSlashes($display_field) . '\''
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($table) . '\'';
} else {
$upd_query = 'DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\''
- . ' AND table_name = \'' . PMA_sqlAddslashes($table) . '\'';
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\''
+ . ' AND table_name = \'' . PMA_sqlAddSlashes($table) . '\'';
}
} elseif ($display_field != '') {
$upd_query = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_info'])
. '(db_name, table_name, display_field) '
. ' VALUES('
- . '\'' . PMA_sqlAddslashes($db) . '\','
- . '\'' . PMA_sqlAddslashes($table) . '\','
- . '\'' . PMA_sqlAddslashes($display_field) . '\')';
+ . '\'' . PMA_sqlAddSlashes($db) . '\','
+ . '\'' . PMA_sqlAddSlashes($table) . '\','
+ . '\'' . PMA_sqlAddSlashes($display_field) . '\')';
}
if (isset($upd_query)) {
diff --git a/pmd_pdf.php b/pmd_pdf.php
index 4972ae2fbb..d697dd58cc 100644
--- a/pmd_pdf.php
+++ b/pmd_pdf.php
@@ -22,7 +22,7 @@ if (isset($mode)) {
$pmd_table = PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']);
$pma_table = PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['table_coords']);
- $scale_q = PMA_sqlAddslashes($scale);
+ $scale_q = PMA_sqlAddSlashes($scale);
if ('create_export' == $mode) {
/*
@@ -38,10 +38,10 @@ if (isset($mode)) {
}
}
- $pdf_page_number_q = PMA_sqlAddslashes($pdf_page_number);
+ $pdf_page_number_q = PMA_sqlAddSlashes($pdf_page_number);
if ('export' == $mode) {
- $sql = "REPLACE INTO " . $pma_table . " (db_name, table_name, pdf_page_number, x, y) SELECT db_name, table_name, " . $pdf_page_number_q . ", ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y FROM " . $pmd_table . " WHERE db_name = '" . PMA_sqlAddslashes($db) . "'";
+ $sql = "REPLACE INTO " . $pma_table . " (db_name, table_name, pdf_page_number, x, y) SELECT db_name, table_name, " . $pdf_page_number_q . ", ROUND(x/" . $scale_q . ") , ROUND(y/" . $scale_q . ") y FROM " . $pmd_table . " WHERE db_name = '" . PMA_sqlAddSlashes($db) . "'";
PMA_query_as_controluser($sql,true,PMA_DBI_QUERY_STORE);
}
@@ -56,7 +56,7 @@ if (isset($mode)) {
AND
' . $pmd_table . '.`table_name` = ' . $pma_table . '.`table_name`
AND
- ' . $pmd_table . '.`db_name`=\''. PMA_sqlAddslashes($db) .'\'
+ ' . $pmd_table . '.`db_name`=\''. PMA_sqlAddSlashes($db) .'\'
AND pdf_page_number = ' . $pdf_page_number_q . ';', true, PMA_DBI_QUERY_STORE);
}
}
@@ -83,7 +83,7 @@ $choices = array();
$table_info_result = PMA_query_as_controluser('SELECT * FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['pdf_pages'])
- . ' WHERE db_name = \'' . PMA_sqlAddslashes($db) . '\'');
+ . ' WHERE db_name = \'' . PMA_sqlAddSlashes($db) . '\'');
if (PMA_DBI_num_rows($table_info_result) > 0) {
echo ' ' . __('Page') . ':';
diff --git a/pmd_relation_new.php b/pmd_relation_new.php
index da92e9727a..a104cc119c 100644
--- a/pmd_relation_new.php
+++ b/pmd_relation_new.php
@@ -73,12 +73,12 @@ if (PMA_foreignkey_supported($type_T1) && PMA_foreignkey_supported($type_T2) &&
$q = 'INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($cfgRelation['relation'])
. '(master_db, master_table, master_field, foreign_db, foreign_table, foreign_field)'
. ' values('
- . '\'' . PMA_sqlAddslashes($db) . '\', '
- . '\'' . PMA_sqlAddslashes($T2) . '\', '
- . '\'' . PMA_sqlAddslashes($F2) . '\', '
- . '\'' . PMA_sqlAddslashes($db) . '\', '
- . '\'' . PMA_sqlAddslashes($T1) . '\','
- . '\'' . PMA_sqlAddslashes($F1) . '\')';
+ . '\'' . PMA_sqlAddSlashes($db) . '\', '
+ . '\'' . PMA_sqlAddSlashes($T2) . '\', '
+ . '\'' . PMA_sqlAddSlashes($F2) . '\', '
+ . '\'' . PMA_sqlAddSlashes($db) . '\', '
+ . '\'' . PMA_sqlAddSlashes($T1) . '\','
+ . '\'' . PMA_sqlAddSlashes($F1) . '\')';
if (PMA_query_as_controluser($q , false, PMA_DBI_QUERY_STORE)) {
PMD_return_new(1, __('Internal relation added'));
diff --git a/pmd_relation_upd.php b/pmd_relation_upd.php
index 6b4b92bbe9..58c9135cce 100644
--- a/pmd_relation_upd.php
+++ b/pmd_relation_upd.php
@@ -44,12 +44,12 @@ if ($try_to_delete_internal_relation) {
PMA_query_as_controluser('DELETE FROM '
. PMA_backquote($GLOBALS['cfgRelation']['db']) . '.'
. $cfg['Server']['relation'].' WHERE '
- . 'master_db = \'' . PMA_sqlAddslashes($DB2) . '\''
- . ' AND master_table = \'' . PMA_sqlAddslashes($T2) . '\''
- . ' AND master_field = \'' . PMA_sqlAddslashes($F2) . '\''
- . ' AND foreign_db = \'' . PMA_sqlAddslashes($DB1) . '\''
- . ' AND foreign_table = \'' . PMA_sqlAddslashes($T1) . '\''
- . ' AND foreign_field = \'' . PMA_sqlAddslashes($F1) . '\''
+ . 'master_db = \'' . PMA_sqlAddSlashes($DB2) . '\''
+ . ' AND master_table = \'' . PMA_sqlAddSlashes($T2) . '\''
+ . ' AND master_field = \'' . PMA_sqlAddSlashes($F2) . '\''
+ . ' AND foreign_db = \'' . PMA_sqlAddSlashes($DB1) . '\''
+ . ' AND foreign_table = \'' . PMA_sqlAddSlashes($T1) . '\''
+ . ' AND foreign_field = \'' . PMA_sqlAddSlashes($F1) . '\''
, false, PMA_DBI_QUERY_STORE);
}
PMD_return_upd(1, __('Relation deleted'));
diff --git a/pmd_save_pos.php b/pmd_save_pos.php
index fb9d1ebd41..6fefe6327e 100644
--- a/pmd_save_pos.php
+++ b/pmd_save_pos.php
@@ -20,18 +20,18 @@ foreach ($t_x as $key => $value) {
$KEY = empty($IS_AJAX) ? urldecode($key) : $key; // table name decode (post PDF exp/imp)
list($DB,$TAB) = explode(".", $KEY);
PMA_query_as_controluser('DELETE FROM ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . '
- WHERE `db_name` = \'' . PMA_sqlAddslashes($DB) . '\'
- AND `table_name` = \'' . PMA_sqlAddslashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE);
+ WHERE `db_name` = \'' . PMA_sqlAddSlashes($DB) . '\'
+ AND `table_name` = \'' . PMA_sqlAddSlashes($TAB) . '\'', true, PMA_DBI_QUERY_STORE);
PMA_query_as_controluser('INSERT INTO ' . PMA_backquote($GLOBALS['cfgRelation']['db']) . '.' . PMA_backquote($GLOBALS['cfgRelation']['designer_coords']) . '
(db_name, table_name, x, y, v, h)
VALUES ('
- . '\'' . PMA_sqlAddslashes($DB) . '\', '
- . '\'' . PMA_sqlAddslashes($TAB) . '\', '
- . '\'' . PMA_sqlAddslashes($t_x[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_y[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_v[$key]) . '\', '
- . '\'' . PMA_sqlAddslashes($t_h[$key]) . '\''
+ . '\'' . PMA_sqlAddSlashes($DB) . '\', '
+ . '\'' . PMA_sqlAddSlashes($TAB) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_x[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_y[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_v[$key]) . '\', '
+ . '\'' . PMA_sqlAddSlashes($t_h[$key]) . '\''
. ')', true, PMA_DBI_QUERY_STORE);
}
//----------------------------------------------------------------------------
diff --git a/po/af.po b/po/af.po
index c8e8a4ec7f..fe02e65bc9 100644
--- a/po/af.po
+++ b/po/af.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:04+0200\n"
"Last-Translator: Michal \n"
"Language-Team: afrikaans \n"
+"Language: af\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: af\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -42,13 +42,13 @@ msgstr ""
msgid "Search"
msgstr "Soek"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "Soek"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Gaan"
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databasis %s is verwyder."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
#, fuzzy
msgid "Database comment: "
msgstr "Tabel kommentaar"
@@ -129,9 +129,9 @@ msgstr "Tabel kommentaar"
msgid "Table comments"
msgstr "Tabel kommentaar"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabel kommentaar"
msgid "Column"
msgstr "Kolom name"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolom name"
msgid "Type"
msgstr "Tipe"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Skakels na"
msgid "Comments"
msgstr "Kommentaar"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Kommentaar"
msgid "No"
msgstr "Nee"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,84 +261,84 @@ msgstr "Selekteer Niks"
msgid "The database name is empty!"
msgstr "Die tabel naam is leeg!"
-#: db_operations.php:271
+#: db_operations.php:272
#, fuzzy, php-format
msgid "Database %s has been renamed to %s"
msgstr "Tabel %s is vernoem na %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, fuzzy, php-format
msgid "Database %s has been copied to %s"
msgstr "Tabel %s is gekopieer na %s."
-#: db_operations.php:403
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Hernoem tabel na"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
#, fuzzy
msgid "Command"
msgstr "Kommentaar"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Hernoem tabel na"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasis %s is verwyder."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Geen databasisse"
-#: db_operations.php:486
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Geen databasisse"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Slegs struktuur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktuur en data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Slegs Data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,7 +347,7 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -360,7 +359,7 @@ msgstr ""
"Die addisionele funksies om met geskakelde tabelle te werk is ge deaktiveer. "
"Om uit te vind hoekom kliek %shier%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -514,100 +513,100 @@ msgstr "SQL-navraag op databasis %s:"
msgid "Submit Query"
msgstr "Doen Navraag"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Jou SQL-navraag is suksesvol uitgevoer"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL het niks teruggegee nie (dus nul rye)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL het gepraat: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Geen tabelle in databasis gevind nie."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabel %s is verwyder"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabel %s is verwyder"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Bediener weergawe"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -744,8 +743,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -812,8 +811,8 @@ msgstr "Drukker mooi (print view)"
msgid "Empty"
msgstr "Maak Leeg"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -891,9 +890,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -989,8 +988,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1160,11 +1159,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Verander"
@@ -1779,6 +1778,212 @@ msgstr "in gebruik"
msgid "Second"
msgstr "Rekords"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Geen indeks gedefinieer!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekse"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Uniek"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Kommentaar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Die primere sleutel is verwyder"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s is verwyder"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "databasisse"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fout"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Geen tabelle"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s is vernoem na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1792,8 +1997,8 @@ msgstr "Welkom by %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1892,14 +2097,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Fout"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1953,11 +2150,6 @@ msgstr "Tabel"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekse"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2238,8 +2430,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Ongebalanseerde kwotasie-teken"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktuur en data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Voltooi invoegings"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Uitgebreide toevoegings"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2900,12 +3169,6 @@ msgstr ""
msgid "LaTeX"
msgstr "Etiket"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "databasisse"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4419,87 +4682,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Ongebalanseerde kwotasie-teken"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktuur en data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Voltooi invoegings"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Uitgebreide toevoegings"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4565,23 +4747,6 @@ msgstr ""
msgid "Add an event"
msgstr "Voeg 'n nuwe gebruiker by"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4653,9 +4818,9 @@ msgstr "Lengte/Waardes*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4708,12 +4873,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Kommentaar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4773,6 +4932,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4930,8 +5106,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5652,8 +5828,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5956,42 +6132,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6009,6 +6149,41 @@ msgstr "SQL resultaat"
msgid "Generated by"
msgstr "Voortgebring deur"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Geen databasisse"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6070,41 +6245,6 @@ msgstr "Kolom name"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Geen databasisse"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6127,40 +6267,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Geen indeks gedefinieer!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Uniek"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Die primere sleutel is verwyder"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s is verwyder"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6173,27 +6279,6 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6434,19 +6519,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Geen tabelle"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nie OK"
@@ -6832,6 +6904,63 @@ msgstr ""
msgid "Target database"
msgstr "Soek in databasis"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Hardloop SQL stellings op databasis %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Hardloop SQL stellings op databasis %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolom name"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Boekmerk hierdie SQL-stelling"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Wys hierdie navraag weer hier "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kyk slegs"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Soek die teksleer"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr ""
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6897,63 +7026,6 @@ msgstr "Ongeldige Identifiseerder"
msgid "Unknown Punctuation String"
msgstr "Onbekende Punktuasie String"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Hardloop SQL stellings op databasis %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Hardloop SQL stellings op databasis %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolom name"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Boekmerk hierdie SQL-stelling"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Wys hierdie navraag weer hier "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kyk slegs"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Soek die teksleer"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr ""
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6961,48 +7033,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s is vernoem na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7127,38 +7157,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Voeg 'n nuwe gebruiker by"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8168,8 +8166,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/ar.po b/po/ar.po
index e1a57562a9..49c86e12c8 100644
--- a/po/ar.po
+++ b/po/ar.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-24 04:50+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-27 03:38+0200\n"
"Last-Translator: Abdullah Al-Saedi \n"
"Language-Team: arabic \n"
+"Language: ar\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ar\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "بحث"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "بحث"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "تنفيذ"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "تم إنشاء قاعدة البيانات %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ملاحظة قاعدة البيانات: "
@@ -133,9 +133,9 @@ msgstr "ملاحظة قاعدة البيانات: "
msgid "Table comments"
msgstr "تعليقات الجدول"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "تعليقات الجدول"
msgid "Column"
msgstr "عمود"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "عمود"
msgid "Type"
msgstr "نوع"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "مرتبط بـ"
msgid "Comments"
msgstr "تعليقات"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "تعليقات"
msgid "No"
msgstr "لا"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "إلغاء تحديد الكل"
msgid "The database name is empty!"
msgstr "إسم قاعدة البيانات خالي!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "تم إعادة تسمية قاعدة البيانات %s إلى %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "تم نسخ قاعدة البيانات %s إلى %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "أعد تسمية قاعدة البيانات ﺇﻠﻰ"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "أمر"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "حذف قاعدة البيانات"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "تم حذف قاعدة البيانات %s ."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "حذف قاعدة البيانات"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "نسخ قاعدة البيانات إلى"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "البنية فقط"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "البنية والبيانات"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "بيانات فقط"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "إنشاء قاعدة البيانات قبل عملية النسخ"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "أضف %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "أضف قيمة AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "أضف قيود"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "التبديل إلى قاعدة البيانات المنسوخة"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,16 +343,16 @@ msgstr "التبديل إلى قاعدة البيانات المنسوخة"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "بناء الارتباطات"
@@ -504,14 +503,14 @@ msgstr "إستعلام SQL في قاعدة البيانات %s:"
msgid "Submit Query"
msgstr "إرسال الإستعلام"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "تم تنفيذ إستعلام SQL بنجاح"
-#: db_routines.php:155
+#: db_routines.php:157
#, fuzzy, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -522,83 +521,83 @@ msgstr[3] ""
msgstr[4] ""
msgstr[5] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "نتائج تنفيذ الإجراء %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "قام MySQL بإرجاع نتيجة فارغة."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
msgid "The following query has failed: \"%s\""
msgstr "فشل الإستعلام \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL قال: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "خطأ في معالجة الطلب"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
msgid "No routine with name %1$s found in database %2$s"
msgstr "لا يوجد جدول بالإسم %1$s في قاعدة البيانات %2$s"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "تنفيذ"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "تصدير %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "نوع الإجراء غير صحيح: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "عفواً , فشل في إستعادة الإجراء المزال"
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "الإستعلام الإحتياطي:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "تم تعديل الإجراء %1$s"
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "تم إنشاء الإجراء %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "حصل خطأ أثناء معالجة طلبك: "
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "إنشاء إجراء"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "تعديل الإجراء"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -735,8 +734,8 @@ msgstr "التتبع غير نشط."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "هذا العرض له ما لا يقل عدد هذه الصفوف يرجى الرجوع إلى %s الوثيقة %s"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -803,8 +802,8 @@ msgstr "عرض نسخة للطباعة"
msgid "Empty"
msgstr "إفراغ"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +876,9 @@ msgstr "محدث"
msgid "Status"
msgstr "الحالة"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -971,8 +970,8 @@ msgstr "تم حفظ الـDump إلى الملف %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"يبدو أنك تحاول رفع ملف كبير الحجم , فضلاً راجع المستند %sdocumentation%s لحل "
"المشكلة."
@@ -1146,11 +1145,11 @@ msgstr "حذف المستخدمين المحددين"
msgid "Close"
msgstr "أغلاق"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تعديل"
@@ -1679,6 +1678,224 @@ msgstr "الدقيقة"
msgid "Second"
msgstr "الثانية"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "حجم الخط"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "تم رفع جزء من الملف فقط."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "المجلد المؤقت مفقود."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "فشلت عملية كتابة الملف على القرص."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "رفع الملف إستوقف من قبل الامتداد."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "خطأ غير معروف عند رفع الملف."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "لم يتم تعريف الفهرس!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "فهارس"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "فريد"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "محزم"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "تعليق"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "لقد تم حذف المفتاح الأساسي"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "تم حذف الفهرس %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "قاعدة بيانات"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "خطأ"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d صف تأثر"
+msgstr[1] "%1$d صف تأثر"
+msgstr[2] "%1$d صفوف تأثرت"
+msgstr[3] "%1$d صفوف تأثرت"
+msgstr[4] "%1$d صفوف تأثرت"
+msgstr[5] "%1$d صفوف تأثرت"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d صف حذف"
+msgstr[1] "%1$d صف حذف"
+msgstr[2] "%1$d صفوف حذفت"
+msgstr[3] "%1$d صفوف حذفت"
+msgstr[4] "%1$d صفوف حذفت"
+msgstr[5] "%1$d صفوف حذفت"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d صف أضيف"
+msgstr[1] "%1$d صف أضيف"
+msgstr[2] "%1$d صفوف أضيفت"
+msgstr[3] ""
+msgstr[4] ""
+msgstr[5] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "لايستطيع حفظ الجدول الأخير"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "الجداول الأخيرة"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "لا يوجد جداول أخيرة"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "لايوجد معلومات تفصيلية لحالة محرك التخزين هذا."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s متوفر في خادم MySQL هذا."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s معطل في خادم MySQL هذا."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "قاعدة البيانات غير صالحة"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "اسم الجدول غير صالح"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "تم إعادة تسمية الجدول %s إلى %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "لا يمكن حفظ تفضيلات جدول UI"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "مسار الصورة للمظهر %s غير صحيح!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "لاتتوفر معاينة."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "إعتبر"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "المظهر الإفتراضي %s غير موجود!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "المظهر %s غير موجود!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "مسار المظهر غير موجود للمظهر %s !"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "مظهر"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "لايمكن الإتصال: إعدادات غير صحيحة."
@@ -1692,8 +1909,8 @@ msgstr "أهلا بك في %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr "يبدو انك لم تنشئ ملف الإعدادات.إستخدم %1$ssetup script%2$s لإنشائه."
#: libraries/auth/config.auth.lib.php:115
@@ -1796,14 +2013,6 @@ msgstr "خطأ PBMS"
msgid "PBMS connection failed:"
msgstr "فشل إتصال PBMS:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "خطأ"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "فشل جلب معلومات PBMS BLOB:"
@@ -1856,11 +2065,6 @@ msgstr "جداول"
msgid "Data"
msgstr "بيانات"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "فهارس"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2140,9 +2344,77 @@ msgstr "لايوجد أي ملفات لرفعها"
msgid "Execute"
msgstr "تنفيذ"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "حجم الخط"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "كلا"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "لامكان"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "يسار"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "يمين"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "فتح"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "إغلاق"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "بناء"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "بيانات"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "البنية والبيانات"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "سريع - عرض خيارات أقل"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "مخصص - عرض كل الخيارات المحتملة"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "مخصص - مثل مافي الأعلى , لكن بدون الخيار سريع/مخصص"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "إدخال كامل"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "إدخال ممدد"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "كلاهما"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "لاشيء منهم"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2317,30 +2589,32 @@ msgid ""
"columns; [kbd]input[/kbd] - allows limiting of input length, [kbd]textarea[/"
"kbd] - allows newlines in columns"
msgstr ""
+"يعرف أي أدوات التعديل تستخدم مع الأعمدة CHAR و VARCHAR ,,[kbd]input[/kbd] - "
+"تسمح بمدخل محدود الطول ,, [kbd]textarea[/kbd] - تسمح بتعدد الأسطر في العمود. "
#: libraries/config/messages.inc.php:33
msgid "CHAR columns editing"
-msgstr ""
+msgstr "تعديل أعمدة CHAR"
#: libraries/config/messages.inc.php:34
msgid "Number of columns for CHAR/VARCHAR textareas"
-msgstr ""
+msgstr "عدد أعمدة مربع النص لـCHAR/VARCHAR"
#: libraries/config/messages.inc.php:35
msgid "CHAR textarea columns"
-msgstr ""
+msgstr "أعمدة مربع النص لـ CHAR"
#: libraries/config/messages.inc.php:36
msgid "Number of rows for CHAR/VARCHAR textareas"
-msgstr ""
+msgstr "عدد صفوف مربع النص لـCHAR/VARCHAR"
#: libraries/config/messages.inc.php:37
msgid "CHAR textarea rows"
-msgstr ""
+msgstr "صفوف مربع النص لـ CHAR"
#: libraries/config/messages.inc.php:38
msgid "Check config file permissions"
-msgstr ""
+msgstr "تحقق من أذونات ملف التكوين"
#: libraries/config/messages.inc.php:39
msgid ""
@@ -2350,144 +2624,135 @@ msgstr ""
#: libraries/config/messages.inc.php:40
msgid "Compress on the fly"
-msgstr ""
+msgstr "ضغط"
#: libraries/config/messages.inc.php:41 setup/frames/config.inc.php:25
#: setup/frames/index.inc.php:165
msgid "Configuration file"
-msgstr ""
+msgstr "ملف التكوين"
#: libraries/config/messages.inc.php:42
msgid ""
"Whether a warning ("Are your really sure...") should be displayed "
"when you're about to lose data"
msgstr ""
+"التحذير (" هل أنت متأكد " ) يظهر عندما تكون على وشك فقدان بيانات"
#: libraries/config/messages.inc.php:43
msgid "Confirm DROP queries"
-msgstr ""
+msgstr "تأكيد إستعلامات DROP"
#: libraries/config/messages.inc.php:44
msgid "Debug SQL"
-msgstr ""
+msgstr "تصحيح SQL"
#: libraries/config/messages.inc.php:45
-#, fuzzy
-#| msgid "Relational schema"
msgid "Default display direction"
-msgstr "بناء الارتباطات"
+msgstr "إتجاه العرض الإفتراضي"
#: libraries/config/messages.inc.php:46
msgid ""
"[kbd]horizontal[/kbd], [kbd]vertical[/kbd] or a number that indicates "
"maximum number for which vertical model is used"
msgstr ""
+"[kbd]أفقي[/kbd] , [kbd]رأسي[/kbd] أو عدد يشير إلى أكبر عدد من الأعمدة "
+"يستعمله النموذج"
#: libraries/config/messages.inc.php:47
msgid "Display direction for altering/creating columns"
-msgstr ""
+msgstr "عرض الإتجاه لـ تعديل/إنشاء الأعمدة"
#: libraries/config/messages.inc.php:48
msgid "Tab that is displayed when entering a database"
-msgstr ""
+msgstr "التبويب الذي يعرض عند الدخول إلى قاعدة البيانات"
#: libraries/config/messages.inc.php:49
msgid "Default database tab"
-msgstr ""
+msgstr "تبويب قاعدة البيانات الإفتراضي"
#: libraries/config/messages.inc.php:50
msgid "Tab that is displayed when entering a server"
-msgstr ""
+msgstr "التبويب الذي يعرض عند الدخول إلى الخادم"
#: libraries/config/messages.inc.php:51
msgid "Default server tab"
-msgstr ""
+msgstr "تبويب الخادم الإفتراضي"
#: libraries/config/messages.inc.php:52
msgid "Tab that is displayed when entering a table"
-msgstr ""
+msgstr "التبويب الذي يعرض عند الدخول إلى الجدول"
#: libraries/config/messages.inc.php:53
msgid "Default table tab"
-msgstr ""
+msgstr "تبويب الجدول الإفتراضي"
#: libraries/config/messages.inc.php:54
msgid "Show binary contents as HEX by default"
-msgstr ""
+msgstr "عرض البيانات الثنائية بالنظام الست عشري إفتراضياً"
#: libraries/config/messages.inc.php:55 libraries/display_tbl.lib.php:629
msgid "Show binary contents as HEX"
-msgstr ""
+msgstr "عرض البيانات الثنائية بالنظام الست عشري"
#: libraries/config/messages.inc.php:56
msgid "Show database listing as a list instead of a drop down"
-msgstr ""
+msgstr "إظهار قواعد البيانات كقائمة بدلاً من القائمة المنسدلة"
#: libraries/config/messages.inc.php:57
msgid "Display databases as a list"
-msgstr ""
+msgstr "إظهار قواعد البيانات كقائمة"
#: libraries/config/messages.inc.php:58
msgid "Show server listing as a list instead of a drop down"
-msgstr ""
+msgstr "إظهار الخوادم كقائمة بدلاً من القائمة المنسدلة"
#: libraries/config/messages.inc.php:59
msgid "Display servers as a list"
-msgstr ""
+msgstr "إظهار الخوادم كقائمة"
#: libraries/config/messages.inc.php:60
msgid ""
"Disable the table maintenance mass operations, like optimizing or repairing "
"the selected tables of a database."
-msgstr ""
+msgstr "تعطيل عمليات الصيانة , مثل تحسين وإصلاح جداول قاعدة البيانات."
#: libraries/config/messages.inc.php:61
-#, fuzzy
-#| msgid "Table maintenance"
msgid "Disable multi table maintenance"
-msgstr "صيانة الجدول"
+msgstr "تعطيل صيانة الجداول المتعددة "
#: libraries/config/messages.inc.php:62
msgid "Edit SQL queries in popup window"
-msgstr ""
+msgstr "تعديل إستعلام SQL في نافذة منبثقة"
#: libraries/config/messages.inc.php:63
-#, fuzzy
-#| msgid "Edit next row"
msgid "Edit in window"
-msgstr "عدل الصف التالي"
+msgstr "تعديل في نافذة"
#: libraries/config/messages.inc.php:64
-#, fuzzy
-#| msgid "Display Features"
msgid "Display errors"
-msgstr "إظهار المزايا"
+msgstr "عرض الأخطاء"
#: libraries/config/messages.inc.php:65
-#, fuzzy
-#| msgid "errors."
msgid "Gather errors"
-msgstr "أخطاء."
+msgstr "جمع الأخطاء"
#: libraries/config/messages.inc.php:66
msgid "Show icons for warning, error and information messages"
-msgstr ""
+msgstr "عرض الأيقونات لرسائل التحذير, الخطأ والمعلومات"
#: libraries/config/messages.inc.php:67
-#, fuzzy
-#| msgid "errors."
msgid "Iconic errors"
-msgstr "أخطاء."
+msgstr "أيقونة أخطاء"
#: libraries/config/messages.inc.php:68
msgid ""
"Set the number of seconds a script is allowed to run ([kbd]0[/kbd] for no "
"limit)"
-msgstr ""
+msgstr "ضع الوقت المحدد لعمل البرنامج ([kbd]0[/kbd]: لانهائي)"
#: libraries/config/messages.inc.php:69
msgid "Maximum execution time"
-msgstr ""
+msgstr "وقت التنفيذ الأقصى"
#: libraries/config/messages.inc.php:70 prefs_manage.php:299
msgid "Save as file"
@@ -2495,7 +2760,7 @@ msgstr "حفظ كملف"
#: libraries/config/messages.inc.php:71 libraries/config/messages.inc.php:239
msgid "Character set of the file"
-msgstr ""
+msgstr "مجموعة الأحرف للملف"
#: libraries/config/messages.inc.php:72 libraries/config/messages.inc.php:88
#: tbl_gis_visualization.php:210 tbl_printview.php:373 tbl_structure.php:873
@@ -2515,24 +2780,18 @@ msgstr "الضغط"
#: libraries/export/latex.php:72 libraries/export/ods.php:25
#: libraries/export/odt.php:58 libraries/export/texytext.php:28
#: libraries/export/xls.php:25 libraries/export/xlsx.php:25
-#, fuzzy
-#| msgid "Put fields names in the first row"
msgid "Put columns names in the first row"
msgstr "ضع أسماء الحقول في السطر الأول"
#: libraries/config/messages.inc.php:75 libraries/config/messages.inc.php:241
#: libraries/config/messages.inc.php:248 libraries/import/csv.php:76
#: libraries/import/ldi.php:42
-#, fuzzy
-#| msgid "Fields enclosed by"
msgid "Columns enclosed by"
msgstr "حقل مضمن بـ"
#: libraries/config/messages.inc.php:76 libraries/config/messages.inc.php:242
#: libraries/config/messages.inc.php:249 libraries/import/csv.php:81
#: libraries/import/ldi.php:43
-#, fuzzy
-#| msgid "Fields escaped by"
msgid "Columns escaped by"
msgstr "حقل متجاهل بـ"
@@ -2546,52 +2805,46 @@ msgstr "استبدل NULL بـ"
#: libraries/config/messages.inc.php:78 libraries/config/messages.inc.php:84
msgid "Remove CRLF characters within columns"
-msgstr ""
+msgstr "حذف CRLF من الأعمدة"
#: libraries/config/messages.inc.php:79 libraries/config/messages.inc.php:245
#: libraries/config/messages.inc.php:253 libraries/import/csv.php:63
#: libraries/import/ldi.php:41
-#, fuzzy
-#| msgid "Lines terminated by"
msgid "Columns terminated by"
-msgstr "خطوط مفصولة بـ"
+msgstr "خطوط تنتهي بـ"
#: libraries/config/messages.inc.php:80 libraries/config/messages.inc.php:240
#: libraries/import/csv.php:86 libraries/import/ldi.php:44
msgid "Lines terminated by"
-msgstr "خطوط مفصولة بـ"
+msgstr "أسطر تنتهي بـ"
#: libraries/config/messages.inc.php:82
-#, fuzzy
-#| msgid "Excel edition"
msgid "Excel edition"
msgstr "إصدارة إكسل"
#: libraries/config/messages.inc.php:85
msgid "Database name template"
-msgstr ""
+msgstr "إسم قالب قاعدة البيانات"
#: libraries/config/messages.inc.php:86
msgid "Server name template"
-msgstr ""
+msgstr "إسم قالب الخادم"
#: libraries/config/messages.inc.php:87
msgid "Table name template"
-msgstr ""
+msgstr "إسم قالب الجدول"
#: libraries/config/messages.inc.php:91 libraries/config/messages.inc.php:104
#: libraries/config/messages.inc.php:113 libraries/config/messages.inc.php:137
#: libraries/config/messages.inc.php:143 libraries/export/htmlword.php:24
#: libraries/export/latex.php:40 libraries/export/odt.php:32
#: libraries/export/sql.php:116 libraries/export/texytext.php:23
-#, fuzzy
-#| msgid "%s table(s)"
msgid "Dump table"
-msgstr "%s جدول (جداول)"
+msgstr "إفراغ الجدول"
#: libraries/config/messages.inc.php:92 libraries/export/latex.php:32
msgid "Include table caption"
-msgstr "أضف عنوانا للجدول"
+msgstr "أضف عنواناً للجدول"
#: libraries/config/messages.inc.php:95 libraries/config/messages.inc.php:101
#: libraries/export/latex.php:50 libraries/export/latex.php:74
@@ -2616,41 +2869,37 @@ msgstr "نوع MIME"
#: libraries/config/messages.inc.php:100 libraries/config/messages.inc.php:112
#: libraries/config/messages.inc.php:136 tbl_relation.php:396
msgid "Relations"
-msgstr "الروابط"
+msgstr "العلاقات"
#: libraries/config/messages.inc.php:105
-#, fuzzy
-#| msgid "Export type"
msgid "Export method"
msgstr "نوع التصدير"
#: libraries/config/messages.inc.php:114 libraries/config/messages.inc.php:116
msgid "Save on server"
-msgstr ""
+msgstr "حفظ في الخادم"
#: libraries/config/messages.inc.php:115 libraries/config/messages.inc.php:117
#: libraries/display_export.lib.php:195 libraries/display_export.lib.php:221
msgid "Overwrite existing file(s)"
-msgstr "خزن على الملفات الموجودة أصلا"
+msgstr "خزن على الملفات الموجودة"
#: libraries/config/messages.inc.php:118
msgid "Remember file name template"
-msgstr ""
+msgstr "تذكر إسم قالب الملف"
#: libraries/config/messages.inc.php:120
-#, fuzzy
-#| msgid "Enclose table and field names with backquotes"
msgid "Enclose table and column names with backquotes"
msgstr "حماية أسماء الجداول و الحقول ب \"`\" "
#: libraries/config/messages.inc.php:121 libraries/config/messages.inc.php:260
#: libraries/display_export.lib.php:353
msgid "SQL compatibility mode"
-msgstr ""
+msgstr "وضع توافق SQL"
#: libraries/config/messages.inc.php:122 libraries/export/sql.php:176
msgid "CREATE TABLE options:"
-msgstr ""
+msgstr "خيارات CREATE TABLE :"
#: libraries/config/messages.inc.php:123
msgid "Creation/Update/Check dates"
@@ -2662,47 +2911,43 @@ msgstr "استخدم الإضافات المتأخرة"
#: libraries/config/messages.inc.php:125 libraries/export/sql.php:79
msgid "Disable foreign key checks"
-msgstr ""
+msgstr "تعطيل التحقق من المفتاح الغريب"
#: libraries/config/messages.inc.php:128
msgid "Use hexadecimal for BLOB"
-msgstr ""
+msgstr "إستخدم النظام الست عشري لـ BLOB"
#: libraries/config/messages.inc.php:130
-#, fuzzy
-#| msgid "Use delayed inserts"
msgid "Use ignore inserts"
-msgstr "استخدم الإضافات المتأخرة"
+msgstr "إستخدم الإضافات المتجاهلة"
#: libraries/config/messages.inc.php:132
msgid "Syntax to use when inserting data"
-msgstr ""
+msgstr "بناء الجملة لإستخدامه عند إدخال البيانات"
#: libraries/config/messages.inc.php:133 libraries/export/sql.php:268
msgid "Maximal length of created query"
-msgstr ""
+msgstr "أقصى طول للإستعلام المنشئ"
#: libraries/config/messages.inc.php:138
-#, fuzzy
-#| msgid "Export"
msgid "Export type"
-msgstr "تصدير"
+msgstr "نوع التصدير"
#: libraries/config/messages.inc.php:139 libraries/export/sql.php:71
msgid "Enclose export in a transaction"
-msgstr ""
+msgstr "تضمين التصدير في العملية"
#: libraries/config/messages.inc.php:140
msgid "Export time in UTC"
-msgstr ""
+msgstr "وقت التصدير (بالتوقيت العالمي)"
#: libraries/config/messages.inc.php:148
msgid "Force secured connection while using phpMyAdmin"
-msgstr ""
+msgstr "فرض الإتصال الآمن عند إستخدام phpMyAdmin"
#: libraries/config/messages.inc.php:149
msgid "Force SSL connection"
-msgstr ""
+msgstr "فرض إتصال SSL"
#: libraries/config/messages.inc.php:150
msgid ""
@@ -2712,30 +2957,30 @@ msgstr ""
#: libraries/config/messages.inc.php:151
msgid "Foreign key dropdown order"
-msgstr ""
+msgstr "قائمة منسدلة مرتبة بالمفتاح الغريب"
#: libraries/config/messages.inc.php:152
msgid "A dropdown will be used if fewer items are present"
-msgstr ""
+msgstr "سيتم إستخدام القائمة المنسدلة إذا وجد عدد أقل من العناصر"
#: libraries/config/messages.inc.php:153
msgid "Foreign key limit"
-msgstr ""
+msgstr "حد المفتاح الغريب"
#: libraries/config/messages.inc.php:154
msgid "Browse mode"
-msgstr ""
+msgstr "وضع الإستعراض"
#: libraries/config/messages.inc.php:155
msgid "Customize browse mode"
-msgstr ""
+msgstr "تخصيص وضع الإستعراض"
#: libraries/config/messages.inc.php:157 libraries/config/messages.inc.php:159
#: libraries/config/messages.inc.php:176 libraries/config/messages.inc.php:187
#: libraries/config/messages.inc.php:189 libraries/config/messages.inc.php:217
#: libraries/config/messages.inc.php:229
msgid "Customize default options"
-msgstr ""
+msgstr "تخصيص الخيارات الإفتراضية"
#: libraries/config/messages.inc.php:158 libraries/config/setup.forms.php:236
#: libraries/config/setup.forms.php:315
@@ -2747,86 +2992,78 @@ msgstr "سي إس في"
#: libraries/config/messages.inc.php:160
msgid "Developer"
-msgstr ""
+msgstr "مطور"
#: libraries/config/messages.inc.php:161
msgid "Settings for phpMyAdmin developers"
-msgstr ""
+msgstr "إعدادات لمطوري phpMyAdmin"
#: libraries/config/messages.inc.php:162
msgid "Edit mode"
-msgstr ""
+msgstr "وضع التعديل"
#: libraries/config/messages.inc.php:163
msgid "Customize edit mode"
-msgstr ""
+msgstr "تخصيص وضع التعديل"
#: libraries/config/messages.inc.php:165
msgid "Export defaults"
-msgstr ""
+msgstr "إفتراضيات التصدير"
#: libraries/config/messages.inc.php:166
msgid "Customize default export options"
-msgstr ""
+msgstr "تخصيص خيارات التصدير الإفتراضي"
#: libraries/config/messages.inc.php:167 libraries/config/messages.inc.php:209
#: setup/frames/menu.inc.php:16
msgid "Features"
-msgstr ""
+msgstr "مميزات"
#: libraries/config/messages.inc.php:168
-#, fuzzy
-#| msgid "Generate"
msgid "General"
-msgstr "ولد"
+msgstr "عام"
#: libraries/config/messages.inc.php:169
msgid "Set some commonly used options"
-msgstr ""
+msgstr "تعيين بعض الخيارات شائعة الإستخدام"
#: libraries/config/messages.inc.php:170 libraries/db_links.inc.php:83
#: libraries/server_links.inc.php:69 libraries/tbl_links.inc.php:89
#: prefs_manage.php:231 setup/frames/menu.inc.php:20
msgid "Import"
-msgstr "استورد"
+msgstr "استيراد"
#: libraries/config/messages.inc.php:171
msgid "Import defaults"
-msgstr ""
+msgstr "إفتراضيات الإستيراد"
#: libraries/config/messages.inc.php:172
msgid "Customize default common import options"
-msgstr ""
+msgstr "تخصيص خيارات الإستيراد الإفتراضية"
#: libraries/config/messages.inc.php:173
msgid "Import / export"
-msgstr ""
+msgstr "إستيراد / تصدير"
#: libraries/config/messages.inc.php:174
msgid "Set import and export directories and compression options"
-msgstr ""
+msgstr "حدد عناوين الإستيراد والتصدير و خيارات الضغط"
#: libraries/config/messages.inc.php:175 libraries/export/latex.php:27
msgid "LaTeX"
-msgstr "لاتكس"
-
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "قاعدة بيانات"
+msgstr "LaTeX"
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
-msgstr ""
+msgstr "خيارات عرض قواعد البيانات"
#: libraries/config/messages.inc.php:179 setup/frames/menu.inc.php:18
msgid "Navigation frame"
-msgstr ""
+msgstr "إطار التصفح"
#: libraries/config/messages.inc.php:180
msgid "Customize appearance of the navigation frame"
-msgstr ""
+msgstr "تخصيص مظهر إطار التصفح"
#: libraries/config/messages.inc.php:181 libraries/select_server.lib.php:42
#: setup/frames/index.inc.php:110
@@ -2835,39 +3072,35 @@ msgstr "خوادم"
#: libraries/config/messages.inc.php:182
msgid "Servers display options"
-msgstr ""
+msgstr "خيارات عرض الخوادم"
#: libraries/config/messages.inc.php:184
msgid "Tables display options"
-msgstr ""
+msgstr "خيارات عرض الجداول"
#: libraries/config/messages.inc.php:185 setup/frames/menu.inc.php:19
msgid "Main frame"
-msgstr ""
+msgstr "الإطار الرئيسي"
#: libraries/config/messages.inc.php:186
msgid "Microsoft Office"
-msgstr ""
+msgstr "مايكروسوفت أوفيس"
#: libraries/config/messages.inc.php:188
-#, fuzzy
-#| msgid "Documentation"
msgid "Open Document"
-msgstr "مستندات وثائقية"
+msgstr "مستند مفتوح"
#: libraries/config/messages.inc.php:190
msgid "Other core settings"
-msgstr ""
+msgstr "الإعدادات الرئيسية الأخرى"
#: libraries/config/messages.inc.php:191
msgid "Settings that didn't fit enywhere else"
-msgstr ""
+msgstr "الإعدادات التي لاتناسب في أي مكان آخر"
#: libraries/config/messages.inc.php:192
-#, fuzzy
-#| msgid "Page number:"
msgid "Page titles"
-msgstr "صفحة رقم:"
+msgstr "عناوين الصفحة"
#: libraries/config/messages.inc.php:193
msgid ""
@@ -2885,49 +3118,48 @@ msgstr "نافذة الاستعلام"
#: libraries/config/messages.inc.php:195
msgid "Customize query window options"
-msgstr ""
+msgstr "تخصيص خيارات نافذة الإستعلام"
#: libraries/config/messages.inc.php:196
msgid "Security"
-msgstr ""
+msgstr "الأمان"
#: libraries/config/messages.inc.php:197
msgid ""
"Please note that phpMyAdmin is just a user interface and its features do not "
"limit MySQL"
msgstr ""
+"فضلاً , تذكر أن phpMyAdmin هي واجة إستخدام فقط ولا يمكن أن تتجاوز حدود MySQL"
#: libraries/config/messages.inc.php:198
msgid "Basic settings"
-msgstr ""
+msgstr "الإعدادات الأساسية"
#: libraries/config/messages.inc.php:199
-#, fuzzy
-#| msgid "Documentation"
msgid "Authentication"
-msgstr "مستندات وثائقية"
+msgstr "المصادقة"
#: libraries/config/messages.inc.php:200
msgid "Authentication settings"
-msgstr ""
+msgstr "خيارات المصادقة"
#: libraries/config/messages.inc.php:201
msgid "Server configuration"
-msgstr ""
+msgstr "إعداد الخادم"
#: libraries/config/messages.inc.php:202
msgid ""
"Advanced server configuration, do not change these options unless you know "
"what they are for"
-msgstr ""
+msgstr "إعداد متقدم للخادم , لاتغير أي من هذه القيم حتى تعلم وظيفتها"
#: libraries/config/messages.inc.php:203
msgid "Enter server connection parameters"
-msgstr ""
+msgstr "أدخل معلومات إتصال الخادم"
#: libraries/config/messages.inc.php:204
msgid "Configuration storage"
-msgstr ""
+msgstr "إعداد التخزين"
#: libraries/config/messages.inc.php:205
msgid ""
@@ -4329,78 +4561,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "كلا"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "لامكان"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "يسار"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "يمين"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "فتح"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "إغلاق"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "بناء"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "بيانات"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "البنية والبيانات"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "سريع - عرض خيارات أقل"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "مخصص - عرض كل الخيارات المحتملة"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "مخصص - مثل مافي الأعلى , لكن بدون الخيار سريع/مخصص"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "إدخال كامل"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "إدخال ممدد"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "كلاهما"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "لاشيء منهم"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4467,23 +4627,6 @@ msgstr ""
msgid "Add an event"
msgstr "أضف مستخدم جديد"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4556,9 +4699,9 @@ msgstr "الطول/القيمة"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4617,11 +4760,6 @@ msgstr "نوع الاستعلام"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "تعليق"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4682,6 +4820,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4843,8 +4998,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5574,8 +5729,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5887,44 +6042,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "حجم الملف المرفوع يتجاوز حجم الملف المسموح به في إعدادات php"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "حجم الملف المرفوع يتجاوز حجم الملف المحدد به في نموذج HTML"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "تم رفع جزء من الملف فقط."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "المجلد المؤقت مفقود."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "فشلت عملية كتابة الملف على القرص."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "رفع الملف إستوقف من قبل الامتداد."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "خطأ غير معروف عند رفع الملف."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"خطأ عند نقل الملف المرفوع , إنظر :[a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5942,6 +6059,40 @@ msgstr "ناتج استعلام SQL"
msgid "Generated by"
msgstr "أنشئ بواسطة"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "اذهب إلى الجدول"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6003,40 +6154,6 @@ msgstr "اسم العمود"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "اذهب إلى الجدول"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6059,40 +6176,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "لم يتم تعريف الفهرس!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "فريد"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "محزم"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "لقد تم حذف المفتاح الأساسي"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "تم حذف الفهرس %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "الفهارس %1$s و %2$s متساويان ويمكن حذف أحدهما."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6105,39 +6188,6 @@ msgstr "لا شيء"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d صف تأثر"
-msgstr[1] "%1$d صف تأثر"
-msgstr[2] "%1$d صفوف تأثرت"
-msgstr[3] "%1$d صفوف تأثرت"
-msgstr[4] "%1$d صفوف تأثرت"
-msgstr[5] "%1$d صفوف تأثرت"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d صف حذف"
-msgstr[1] "%1$d صف حذف"
-msgstr[2] "%1$d صفوف حذفت"
-msgstr[3] "%1$d صفوف حذفت"
-msgstr[4] "%1$d صفوف حذفت"
-msgstr[5] "%1$d صفوف حذفت"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d صف أضيف"
-msgstr[1] "%1$d صف أضيف"
-msgstr[2] "%1$d صفوف أضيفت"
-msgstr[3] ""
-msgstr[4] ""
-msgstr[5] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6382,18 +6432,6 @@ msgstr ""
msgid "This format has no options"
msgstr "هذا التنسيق ليس له أي خيارات"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "لايستطيع حفظ الجدول الأخير"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "الجداول الأخيرة"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "لا يوجد جداول أخيرة"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ليس صالحا"
@@ -6780,6 +6818,63 @@ msgstr "فرق"
msgid "Target database"
msgstr ""
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "اسم العمود"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "اجعل علامة مرجعية SQL-استعلام"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "لا تخزن على هذا الاستعلام من خارج النافذة"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " عرض هذا الاستعلام هنا مرة أخرى "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "عرض فقط"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "مكان ملف نصي"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "دليل تحميل الملفات على خادم الشبكة"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6840,63 +6935,6 @@ msgstr "معرف غير صالح"
msgid "Unknown Punctuation String"
msgstr "نص تنقيط غير معروف"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "تنفيذ استعلام/استعلامات SQL على قاعدة بيانات %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "اسم العمود"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "اجعل علامة مرجعية SQL-استعلام"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "اسمح لكل المستخدمين الوصول إلى هذه العلامة المرجعية"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "لا تخزن على هذا الاستعلام من خارج النافذة"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " عرض هذا الاستعلام هنا مرة أخرى "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "عرض فقط"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "مكان ملف نصي"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "دليل تحميل الملفات على خادم الشبكة"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6906,48 +6944,6 @@ msgstr ""
"لم يمكن تشغيل محقق SQL. الرجاء التأكد مما إذا كنت ثبتت إضافات PHP كما هو "
"مشروح في %sالتوثيق%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "لايوجد معلومات تفصيلية لحالة محرك التخزين هذا."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s متوفر في خادم MySQL هذا."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s معطل في خادم MySQL هذا."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "خادم MySQL هذا لايدعم محرك التخزين %s ."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "قاعدة البيانات غير صالحة"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "اسم الجدول غير صالح"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "خطأ في إعادة تسمية الجدول %1$s إلى %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "تم إعادة تسمية الجدول %s إلى %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "لا يمكن حفظ تفضيلات جدول UI"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7076,38 +7072,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "أضف مستخدم جديد"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "مسار الصورة للمظهر %s غير صحيح!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "لاتتوفر معاينة."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "إعتبر"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "المظهر الإفتراضي %s غير موجود!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "المظهر %s غير موجود!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "مسار المظهر غير موجود للمظهر %s !"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "مظهر"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7410,8 +7374,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا%"
-"s."
+"تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %sهنا"
+"%s."
#: main.php:314
msgid ""
@@ -8160,8 +8124,8 @@ msgstr "احذف قواعد البيانات التي لها نفس أسماء
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ملاحظة: يقرأ phpMyAdmin صلاحيات المستخدمين من جداول الصلاحيات من خادم MySQL "
"مباشرة. محتويات هذه الجداول قد تختلف عن الصلاحيات التي يستخدمها الخادم إذا "
@@ -10460,8 +10424,8 @@ msgstr "أعد تسمية العرض الـ"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط %"
-#~ "sهنا%s."
+#~ "تم تعطيل المزايا الإضافية للعمل بالجداول المترابطة. لمعرفة السبب اضغط "
+#~ "%sهنا%s."
#~ msgid "Execute bookmarked query"
#~ msgstr "نفذ استعلام محفوظ بعلامة مرجعية"
diff --git a/po/az.po b/po/az.po
index a14e0c688d..4bbf9b2f89 100644
--- a/po/az.po
+++ b/po/az.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:11+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: azerbaijani \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -41,13 +41,13 @@ msgstr ""
msgid "Search"
msgstr "Axtarış"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -60,18 +60,18 @@ msgstr "Axtarış"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Davam"
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s bazası yaradildi"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Baza qısa izahatı: "
@@ -128,9 +128,9 @@ msgstr "Baza qısa izahatı: "
msgid "Table comments"
msgstr "Cedvel haqqında qısa izahat"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "Cedvel haqqında qısa izahat"
msgid "Column"
msgstr "Sütun adları"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "Sütun adları"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +196,12 @@ msgstr "Links to"
msgid "Comments"
msgstr "Qısa İzahatlar"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +212,17 @@ msgstr "Qısa İzahatlar"
msgid "No"
msgstr "Xeyir"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,84 +260,84 @@ msgstr "Heç birini seçme"
msgid "The database name is empty!"
msgstr "Cedveli adı boşdur!"
-#: db_operations.php:271
+#: db_operations.php:272
#, fuzzy, php-format
msgid "Database %s has been renamed to %s"
msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
-#: db_operations.php:275
+#: db_operations.php:276
#, fuzzy, php-format
msgid "Database %s has been copied to %s"
msgstr "%s cedveli %s - e kopyalandı."
-#: db_operations.php:403
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Cedveli yeniden adlandır"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komanda Tipi"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Cedveli yeniden adlandır"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s bazası leğv edildi."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: db_operations.php:486
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Sadece quruluş"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Quruluş ve me'lumat"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Sadece me'lumat"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT deyeri elave et"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Kopyalanmış cedvele keç"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,7 +347,7 @@ msgstr "Kopyalanmış cedvele keç"
msgid "Collation"
msgstr "Quruluş"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -360,7 +359,7 @@ msgstr ""
"Elaqelendirilmiş cedveller üçün nezerde tutulmuş be'zi xüsusiyyetler "
"passivleşdirilmişdir. Sebebini aydınlaşdırmaq üçün %sbax%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -513,102 +512,102 @@ msgstr "SQL-query on database %s:"
msgid "Submit Query"
msgstr "Emri İcra Et"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL sorğunuz müveffeqiyyetle icra edilmişdir"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş netice çoxluğu gönderdi (ye'ni sıfır setir)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL deyir: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Prosesler"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Me'lumat bazasında cedvel yoxdur."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "%s cedveli leğv edildi"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "%s cedveli leğv edildi"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Server versiyası"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -745,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -814,8 +813,8 @@ msgstr "Çap görüntüsü"
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -893,9 +892,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -993,8 +992,8 @@ msgstr "Sxem %s faylına qeyd edildi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1175,11 +1174,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Deyişdir"
@@ -1802,6 +1801,212 @@ msgstr "istifadede"
msgid "Second"
msgstr "saniyede"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "İndeks te'yin edilmedi!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksler"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikal"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Qısa İzahatlar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birinci dereceli açar leğv edildi"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indeksi leğv edildi"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Me'lumat Bazaları"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Xeta"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Cedvel yoxdur"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir."
+
+#: libraries/StorageEngine.class.php:355
+#, fuzzy, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s motoru bu serverde söndürülmüşdür."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s motoru bu serverde söndürülmüşdür."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Elaqe qura bilmirem: yalnış quruluş."
@@ -1815,8 +2020,8 @@ msgstr "%s - e Xoş Gelmişsiniz!"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1916,14 +2121,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Xeta"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1976,11 +2173,6 @@ msgstr "Cedveller"
msgid "Data"
msgstr "Me'lumat"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksler"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2264,8 +2456,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Quruluş"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Quruluş ve me'lumat"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Tam girişli"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Genişletilmiş girişli"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2939,12 +3208,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Me'lumat Bazaları"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4475,87 +4738,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Quruluş"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Quruluş ve me'lumat"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Tam girişli"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Genişletilmiş girişli"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4621,23 +4803,6 @@ msgstr ""
msgid "Add an event"
msgstr "Yeni İstifadeçi elave Et"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4710,9 +4875,9 @@ msgstr "Uzunluq/Deyerler*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4770,12 +4935,6 @@ msgstr "Sorğu tipi"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Qısa İzahatlar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4836,6 +4995,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4997,8 +5173,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5729,8 +5905,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6044,42 +6220,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6097,6 +6237,41 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Qurucu"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6158,41 +6333,6 @@ msgstr "Sütun adları"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza seçilmemişdir ve ya mövcud deyildir."
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6215,40 +6355,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "İndeks te'yin edilmedi!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikal"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birinci dereceli açar leğv edildi"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indeksi leğv edildi"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6261,27 +6367,6 @@ msgstr "Heç biri"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6531,19 +6616,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Bu formatın variantları yoxdur"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Cedvel yoxdur"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Müveffeqiyyetsiz"
@@ -6936,6 +7008,63 @@ msgstr ""
msgid "Target database"
msgstr "Search in database"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Sütun adları"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL sorğusunu bookmark-la"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorğunu burada yene göster "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Sadece göster"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "tekst faylından yükleyerek"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server upload direktoriyası"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6998,63 +7127,6 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s me'lumat bazasına SQL sorğusu(-ları) gönder"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Sütun adları"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL sorğusunu bookmark-la"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorğunu burada yene göster "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Sadece göster"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "tekst faylından yükleyerek"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server upload direktoriyası"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7064,48 +7136,6 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary php extensions as described in the %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu depolama motoru haqqında etrafli status me'lumatı mövcud deyildir."
-
-#: libraries/StorageEngine.class.php:355
-#, fuzzy, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s motoru bu serverde söndürülmüşdür."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s motoru bu serverde söndürülmüşdür."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL server %s depolama motorunu desteklememektedir."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s cedveli %s olaraq yeniden adlandırılmışdır"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7235,38 +7265,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Yeni İstifadeçi elave Et"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8340,8 +8338,8 @@ msgstr "İstifadeçilerle eyni adlı me'lumat bazalarını leğv et."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Qeyd: phpMyAdmin istifadeçi selahiyyetlerini birbaşa MySQL-in selahiyyetler "
"cedvellerinden almaqdadır. Eger elle nizamlamalar edilmişse, bu cedvellerin "
diff --git a/po/be.po b/po/be.po
index 840e445bc8..7fdd1da6fc 100644
--- a/po/be.po
+++ b/po/be.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: belarusian_cyrillic \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Пошук"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Пошук"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Панеслася"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База дадзеных %1$s створаная."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Камэнтар да базы дадзеных: "
@@ -131,9 +131,9 @@ msgstr "Камэнтар да базы дадзеных: "
msgid "Table comments"
msgstr "Камэнтар да табліцы"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Камэнтар да табліцы"
msgid "Column"
msgstr "Назвы калёнак"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Назвы калёнак"
msgid "Type"
msgstr "Тып"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Зьвязаная з"
msgid "Comments"
msgstr "Камэнтары"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Камэнтары"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,82 +262,82 @@ msgstr "Зьняць усе адзнакі"
msgid "The database name is empty!"
msgstr "Імя базы дадзеных не пазначанае!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "База дадзеных %s была перайменаваная ў %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "База дадзеных %s была скапіяваная ў %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Перайменаваць базу дадзеных у"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Каманда"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Перайменаваць базу дадзеных у"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База дадзеных %s была выдаленая."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Базы дадзеных адсутнічаюць"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Капіяваць базу дадзеных у"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Толькі структуру"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структуру і дадзеныя"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Толькі дадзеныя"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "выканаць CREATE DATABASE перад капіяваньнем"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Дадаць %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Дадаць значэньне AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Дадаць абмежаваньні"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Перайсьці да скапіяванай базы дадзеных"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -347,7 +346,7 @@ msgstr "Перайсьці да скапіяванай базы дадзеных
msgid "Collation"
msgstr "Супастаўленьне"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -359,7 +358,7 @@ msgstr ""
"Дадатковыя магчымасьці работы з зьвязанымі табліцамі былі адключаныя. Каб "
"высьветліць чаму, націсьніце %sтут%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -512,107 +511,107 @@ msgstr "SQL-запыт да БД %s:"
msgid "Submit Query"
msgstr "Выканаць запыт"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL-запыт быў пасьпяхова выкананы"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дазваляе выкананьне праграмаў, якія захоўваюцца."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вярнула пусты вынік (то бок нуль радкоў)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Адказ MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Працэсы"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "У базе дадзеных табліц ня выяўлена."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Імпартаваць файлы"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Некарэктны індэкс сэрвэра: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Табліца %s была выдаленая"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Табліца %1$s створаная."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Стварыць сувязь"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
msgid "Edit routine"
msgstr "Вэб-сэрвэр"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -749,11 +748,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да %"
-"sдакумэнтацыі%s."
+"Гэты прагляд мае толькі такую колькасьць радкоў. Калі ласка, зьвярніцеся да "
+"%sдакумэнтацыі%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -821,8 +820,8 @@ msgstr "Вэрсія для друку"
msgid "Empty"
msgstr "Ачысьціць"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -903,9 +902,9 @@ msgstr ""
msgid "Status"
msgstr "Стан"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1004,8 +1003,8 @@ msgstr "Дамп захаваны ў файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вы, мусіць, паспрабавалі загрузіць вельмі вялікі файл. Калі ласка, "
"зьвярніцеся да %sдакумэнтацыі%s для высьвятленьня спосабаў абыйсьці гэтае "
@@ -1024,8 +1023,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца (%"
-"s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
+"Вы паспрабавалі загрузіць файл з мэтадам сьціску, які непадтрымліваецца "
+"(%s). Ягоная падтрымка або не рэалізаваная, або адключаная ў вашай "
"канфігурацыі."
#: import.php:336
@@ -1200,11 +1199,11 @@ msgstr "Выдаліць выбраных карыстальнікаў"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Рэдагаваць"
@@ -1832,6 +1831,224 @@ msgstr "выкарыстоўваецца"
msgid "Second"
msgstr "у сэкунду"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Памер шрыфта"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
+"вызначаны ў HTML-форме."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Файл быў загружаны толькі часткова."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Адсутнічае часовая тэчка."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Памылка запісу на дыск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Загрузка файла спыненая пашырэньнем."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Падчас загрузкі файла адбылася невядомая памылка."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Індэкс ня вызначаны!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Індэксы"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Унікальнае"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Сьціснутая"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Колькасьць элемэнтаў"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Камэнтар"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Першасны ключ быў выдалены"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Індэкс %s быў выдалены"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь "
+"іх, магчыма, можна выдаліць."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базы дадзеных"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Памылка"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Зьменена радкоў: %1$d."
+msgstr[1] "Зьменена радкоў: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Выдалена радкоў: %1$d."
+msgstr[1] "Выдалена радкоў: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Устаўлена радкоў: %1$d."
+msgstr[1] "Устаўлена радкоў: %1$d."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Няма табліц"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Праверыць табліцу"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s даступная на гэтым MySQL-сэрвэры."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s была адключаная для рэтага MySQL-сэрвэра."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Няправільная база дадзеных"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Некарэктнае імя табліцы"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табліца %s была перайменаваная ў %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Папярэдні прагляд недаступны."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "гэтая"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Тэма па змоўчаньні %s ня знойдзеная!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тэма %s ня знойдзеная!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Ня знойдзены шлях да тэмы %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Немагчыма падлучыцца: няправільныя налады."
@@ -1845,8 +2062,8 @@ msgstr "Запрашаем у %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Імаверна, прычына гэтага ў тым, што ня створаны канфігурацыйны файл. Каб яго "
"стварыць, можна выкарыстаць %1$sналадачны скрыпт%2$s."
@@ -1956,14 +2173,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Супастаўленьне падлучэньня да MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Памылка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2016,11 +2225,6 @@ msgstr "Табліц"
msgid "Data"
msgstr "Дадзеныя"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Індэксы"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2311,9 +2515,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Памер шрыфта"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Незакрытае двукосьсе"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структуру і дадзеныя"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Поўная ўстаўка"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Пашыраныя ўстаўкі"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2987,12 +3268,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базы дадзеных"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4556,87 +4831,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Незакрытае двукосьсе"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структуру і дадзеныя"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Поўная ўстаўка"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Пашыраныя ўстаўкі"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4703,25 +4897,6 @@ msgstr ""
msgid "Add an event"
msgstr "Дадаць новага карыстальніка"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
-"канфігурацыйным файле."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сэрвэр не адказвае"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Падрабязьней..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4796,9 +4971,9 @@ msgstr "Даўжыня/Значэньні*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4857,11 +5032,6 @@ msgstr "Тып запыту"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Камэнтар"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4925,6 +5095,25 @@ msgid ""
"3.11[/a]"
msgstr "Значэньне можа быць прыблізным. Гл. FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Не атрымалася ўсталяваць злучэньне для controluser, вызначанае ў вашым "
+"канфігурацыйным файле."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сэрвэр не адказвае"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(або сокет лякальнага сэрвэра MySQL не сканфігураваны правільна)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Падрабязьней..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5095,8 +5284,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Гэтае значэньне інтэрпрэтуецца з выкарыстаньнем %1$sstrftime%2$s, таму можна "
"выкарыстоўваць радкі фарматаваньня часу. Апроч гэтага, будуць праведзеныя "
@@ -5902,8 +6091,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6221,46 +6410,6 @@ msgstr "Выгляд"
msgid "Export contents"
msgstr "Тып экспарту"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Памер загружанага файла пераўзыходзіць парамэтар upload_max_filesize у php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Памер загружанага файла пераўзыходзіць парамэтар MAX_FILE_SIZE, які быў "
-"вызначаны ў HTML-форме."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Файл быў загружаны толькі часткова."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Адсутнічае часовая тэчка."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Памылка запісу на дыск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Загрузка файла спыненая пашырэньнем."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Падчас загрузкі файла адбылася невядомая памылка."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Памылка перамяшчэньня загружанага файла. Глядзіце разьдзел 1.11 у FAQ"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6278,6 +6427,42 @@ msgstr "SQL-вынік"
msgid "Generated by"
msgstr "Створаны"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Базы дадзеных адсутнічаюць"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6340,42 +6525,6 @@ msgstr "Назвы калёнак"
msgid "This plugin does not support compressed imports!"
msgstr "Гэты плагін не падтрымлівае сьціснутыя дадзеныя!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Базы дадзеных адсутнічаюць"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Базы дадзеных адсутнічаюць"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6400,42 +6549,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Індэкс ня вызначаны!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Унікальнае"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Сьціснутая"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Колькасьць элемэнтаў"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Першасны ключ быў выдалены"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Індэкс %s быў выдалены"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Падобна, што індэксы %1$s і %2$s зьяўляюцца аднолькавымі, а таму адзін зь "
-"іх, магчыма, можна выдаліць."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6448,30 +6561,6 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Зьменена радкоў: %1$d."
-msgstr[1] "Зьменена радкоў: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Выдалена радкоў: %1$d."
-msgstr[1] "Выдалена радкоў: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Устаўлена радкоў: %1$d."
-msgstr[1] "Устаўлена радкоў: %1$d."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6716,22 +6805,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Гэты фармат ня мае опцыяў"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Немагчыма загрузіць канфігурацыю па змоўчаньні з: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Няма табліц"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Праверыць табліцу"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не OK"
@@ -7128,6 +7201,64 @@ msgstr ""
msgid "Target database"
msgstr "Пошук у базе дадзеных"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Каляндар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Назвы калёнак"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Дадаць гэты SQL-запыт у закладкі"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замяніць існую закладку з такім жа імем"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не перазапісвайце гэты запыт у іншых вокнах"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разьдзяляльнік"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Паказаць гэты запыт зноў "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Толькі прагляд"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Месцазнаходжаньне тэкставага файла"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7192,64 +7323,6 @@ msgstr "Няправільны ідэнтыфікатар"
msgid "Unknown Punctuation String"
msgstr "Невядомы сымбаль пунктуацыі"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Выканаць SQL-запыт(ы) на сэрвэры %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Выканаць SQL-запыт(ы) на базе дадзеных %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Каляндар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Назвы калёнак"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Дадаць гэты SQL-запыт у закладкі"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Даць кожнаму карыстальніку доступ да гэтай закладкі"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замяніць існую закладку з такім жа імем"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не перазапісвайце гэты запыт у іншых вокнах"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разьдзяляльнік"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Паказаць гэты запыт зноў "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Толькі прагляд"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Месцазнаходжаньне тэкставага файла"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "тэчка вэб-сэрвэра для загрузкі файлаў"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7260,49 +7333,6 @@ msgstr ""
"ўсталяваныя ў вас неабходныя пашырэньні PHP, як гэта апісана ў %sдакумэнтацыі"
"%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Для гэтай машыны захаваньня дадзеных дэтальная інфармацыя не даступная."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s даступная на гэтым MySQL-сэрвэры."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s была адключаная для рэтага MySQL-сэрвэра."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Гэты сэрвэр MySQL не падтрымлівае машыну захаваньня дадзеных %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Няправільная база дадзеных"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Некарэктнае імя табліцы"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Памылка перайменаваньня табліцы %1$s у %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табліца %s была перайменаваная ў %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Табліца — пустая!"
@@ -7433,38 +7463,6 @@ msgstr "Азначэньне PARTITION"
msgid "+ Add a value"
msgstr "Дадаць новага карыстальніка"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Дапушчальны шлях да малюнкаў тэмы %s ня знойдзены!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Папярэдні прагляд недаступны."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "гэтая"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Тэма па змоўчаньні %s ня знойдзеная!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тэма %s ня знойдзеная!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Ня знойдзены шлях да тэмы %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8595,8 +8593,8 @@ msgstr "Выдаліць базы дадзеных, якія маюць такі
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Заўвага: phpMyAdmin атрымлівае прывілеі карыстальнікаў наўпростава з табліц "
"прывілеяў MySQL. Зьмесьціва гэтых табліц можа адрозьнівацца ад прывілеяў, "
diff --git a/po/be@latin.po b/po/be@latin.po
index 50d9734d26..2362ec90aa 100644
--- a/po/be@latin.po
+++ b/po/be@latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-30 23:09+0200\n"
"Last-Translator: Michal \n"
"Language-Team: belarusian_latin \n"
+"Language: be@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: be@latin\n"
-"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
+"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Pošuk"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pošuk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Paniesłasia"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza dadzienych %1$s stvoranaja."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Kamentar da bazy dadzienych: "
@@ -133,9 +133,9 @@ msgstr "Kamentar da bazy dadzienych: "
msgid "Table comments"
msgstr "Kamentar da tablicy"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Kamentar da tablicy"
msgid "Column"
msgstr "Nazvy kalonak"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nazvy kalonak"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,13 +201,12 @@ msgstr "Źviazanaja z"
msgid "Comments"
msgstr "Kamentary"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +217,17 @@ msgstr "Kamentary"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,83 +264,83 @@ msgstr "Źniać usie adznaki"
msgid "The database name is empty!"
msgstr "Imia bazy dadzienych nie paznačanaje!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Baza dadzienych %s była pierajmienavanaja ŭ %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Baza dadzienych %s była skapijavanaja ŭ %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pierajmienavać bazu dadzienych u"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Kamanda"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Pierajmienavać bazu dadzienych u"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza dadzienych %s była vydalenaja."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
#| msgid "Copy database to"
msgid "Drop the database (DROP)"
msgstr "Kapijavać bazu dadzienych u"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kapijavać bazu dadzienych u"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tolki strukturu"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu i dadzienyja"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Tolki dadzienyja"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "vykanać CREATE DATABASE pierad kapijavańniem"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Dadać %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dadać značeńnie AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Dadać abmiežavańni"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pierajści da skapijavanaj bazy dadzienych"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -350,7 +349,7 @@ msgstr "Pierajści da skapijavanaj bazy dadzienych"
msgid "Collation"
msgstr "Supastaŭleńnie"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -362,7 +361,7 @@ msgstr ""
"Dadatkovyja mahčymaści raboty z źviazanymi tablicami byli adklučanyja. Kab "
"vyśvietlić čamu, naciśnicie %stut%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -516,14 +515,14 @@ msgstr "SQL-zapyt da BD %s:"
msgid "Submit Query"
msgstr "Vykanać zapyt"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL-zapyt byŭ paśpiachova vykanany"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -531,94 +530,94 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dazvalaje vykanańnie pragramaŭ, jakija zachoŭvajucca."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL viarnuła pusty vynik (to bok nul radkoŭ)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Adkaz MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Pracesy"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "U bazie dadzienych tablic nia vyjaŭlena."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Niekarektny indeks servera: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tablica %s była vydalenaja"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tablica %1$s stvoranaja."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Stvaryć suviaź"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Routines"
msgid "Edit routine"
msgstr "Pracedury"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -757,11 +756,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da %"
-"sdakumentacyi%s."
+"Hety prahlad maje tolki takuju kolkaść radkoŭ. Kali łaska, źviarniciesia da "
+"%sdakumentacyi%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -829,8 +828,8 @@ msgstr "Versija dla druku"
msgid "Empty"
msgstr "Ačyścić"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -907,9 +906,9 @@ msgstr ""
msgid "Status"
msgstr "Stan"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1003,8 +1002,8 @@ msgstr "Damp zachavany ŭ fajł %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vy, musić, pasprabavali zahruzić vielmi vialiki fajł. Kali łaska, "
"źviarniciesia da %sdakumentacyi%s dla vyśviatleńnia sposabaŭ abyjści hetaje "
@@ -1023,8 +1022,8 @@ msgid ""
"You attempted to load file with unsupported compression (%s). Either support "
"for it is not implemented or disabled by your configuration."
msgstr ""
-"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca (%"
-"s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
+"Vy pasprabavali zahruzić fajł z metadam ścisku, jaki niepadtrymlivajecca "
+"(%s). Jahonaja padtrymka abo nie realizavanaja, abo adklučanaja ŭ vašaj "
"kanfihuracyi."
#: import.php:336
@@ -1199,11 +1198,11 @@ msgstr "Vydalić vybranych karystalnikaŭ"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redagavać"
@@ -1838,6 +1837,225 @@ msgstr "vykarystoŭvajecca"
msgid "Second"
msgstr "u sekundu"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Pamier šryfta"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
+"vyznačany ŭ HTML-formie."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Fajł byŭ zahružany tolki častkova."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Adsutničaje časovaja tečka."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Pamyłka zapisu na dysk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Zahruzka fajła spynienaja pašyreńniem."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks nia vyznačany!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksy"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikalnaje"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Ścisnutaja"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kolkaść elementaŭ"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kamentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Pieršasny kluč byŭ vydaleny"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s byŭ vydaleny"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź "
+"ich, mahčyma, možna vydalić."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bazy dadzienych"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Pamyłka"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Źmieniena radkoŭ: %1$d."
+msgstr[1] "Źmieniena radkoŭ: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Vydalena radkoŭ: %1$d."
+msgstr[1] "Vydalena radkoŭ: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Ustaŭlena radkoŭ: %1$d."
+msgstr[1] "Ustaŭlena radkoŭ: %1$d."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Vybierycie tablicu(y)"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s dastupnaja na hetym MySQL-servery."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s była adklučanaja dla retaha MySQL-servera."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Niapravilnaja baza dadzienych"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Niekarektnaje imia tablicy"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tablica %s była pierajmienavanaja ŭ %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Papiaredni prahlad niedastupny."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "hetaja"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nia znojdzienaja!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nia znojdzieny šlach da temy %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Niemahčyma padłučycca: niapravilnyja nałady."
@@ -1851,8 +2069,8 @@ msgstr "Zaprašajem u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Imavierna, pryčyna hetaha ŭ tym, što nia stvorany kanfihuracyjny fajł. Kab "
"jaho stvaryć, možna vykarystać %1$snaładačny skrypt%2$s."
@@ -1963,14 +2181,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Supastaŭleńnie padłučeńnia da MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Pamyłka"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2023,11 +2233,6 @@ msgstr "Tablic"
msgid "Data"
msgstr "Dadzienyja"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksy"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2321,9 +2526,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Pamier šryfta"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Niezakrytaje dvukośsie"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strukturu i dadzienyja"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Poŭnaja ŭstaŭka"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Pašyranyja ŭstaŭki"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2989,12 +3270,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bazy dadzienych"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4532,86 +4807,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Niezakrytaje dvukośsie"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strukturu i dadzienyja"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Poŭnaja ŭstaŭka"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Pašyranyja ŭstaŭki"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4680,25 +4875,6 @@ msgstr ""
msgid "Add an event"
msgstr "Dadać novaha karystalnika"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym "
-"kanfihuracyjnym fajle."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server nie adkazvaje"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Padrabiaźniej..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4773,9 +4949,9 @@ msgstr "Daŭžynia/Značeńni*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4834,11 +5010,6 @@ msgstr "Typ zapytu"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kamentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4901,6 +5072,25 @@ msgid ""
"3.11[/a]"
msgstr "Značeńnie moža być prybliznym. Hł. FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Nie atrymałasia ŭstalavać złučeńnie dla controluser, vyznačanaje ŭ vašym "
+"kanfihuracyjnym fajle."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server nie adkazvaje"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(abo sokiet lakalnaha servera MySQL nie skanfihuravany pravilna)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Padrabiaźniej..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5070,8 +5260,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Hetaje značeńnie interpretujecca z vykarystańniem %1$sstrftime%2$s, tamu "
"možna vykarystoŭvać radki farmatavańnia času. Aproč hetaha, buduć "
@@ -5880,8 +6070,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6199,47 +6389,6 @@ msgstr "Vyhlad"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Pamier zahružanaha fajła pieraŭzychodzić parametar upload_max_filesize u php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Pamier zahružanaha fajła pieraŭzychodzić parametar MAX_FILE_SIZE, jaki byŭ "
-"vyznačany ŭ HTML-formie."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Fajł byŭ zahružany tolki častkova."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Adsutničaje časovaja tečka."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Pamyłka zapisu na dysk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Zahruzka fajła spynienaja pašyreńniem."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Padčas zahruzki fajła adbyłasia nieviadomaja pamyłka."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Pamyłka pieramiaščeńnia zahružanaha fajła. Hladzicie raździeł 1.11 u FAQ"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6257,6 +6406,40 @@ msgstr "SQL-vynik"
msgid "Generated by"
msgstr "Stvorany"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6319,40 +6502,6 @@ msgstr "Nazvy kalonak"
msgid "This plugin does not support compressed imports!"
msgstr "Hety płahin nie padtrymlivaje ścisnutyja dadzienyja!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6377,42 +6526,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks nia vyznačany!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikalnaje"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Ścisnutaja"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kolkaść elementaŭ"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Pieršasny kluč byŭ vydaleny"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s byŭ vydaleny"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Padobna, što indeksy %1$s i %2$s źjaŭlajucca adnolkavymi, a tamu adzin ź "
-"ich, mahčyma, možna vydalić."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6425,30 +6538,6 @@ msgstr "Nijakaja"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Źmieniena radkoŭ: %1$d."
-msgstr[1] "Źmieniena radkoŭ: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Vydalena radkoŭ: %1$d."
-msgstr[1] "Vydalena radkoŭ: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Ustaŭlena radkoŭ: %1$d."
-msgstr[1] "Ustaŭlena radkoŭ: %1$d."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6693,22 +6782,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Hety farmat nia maje opcyjaŭ"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Niemahčyma zahruzić kanfihuracyju pa zmoŭčańni z: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Vybierycie tablicu(y)"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nie OK"
@@ -7100,6 +7173,63 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Vykanać SQL-zapyt(y) na servery %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazvy kalonak"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Dadać hety SQL-zapyt u zakładki"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamianić isnuju zakładku z takim ža imiem"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Raździalalnik"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Pakazać hety zapyt znoŭ "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tolki prahlad"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Miescaznachodžańnie tekstavaha fajła"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "tečka web-servera dla zahruzki fajłaŭ"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7165,63 +7295,6 @@ msgstr "Niapravilny identyfikatar"
msgid "Unknown Punctuation String"
msgstr "Nieviadomy symbal punktuacyi"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Vykanać SQL-zapyt(y) na servery %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Vykanać SQL-zapyt(y) na bazie dadzienych %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazvy kalonak"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Dadać hety SQL-zapyt u zakładki"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dać kožnamu karystalniku dostup da hetaj zakładki"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamianić isnuju zakładku z takim ža imiem"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nie pierazapisvajcie hety zapyt u inšych voknach"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Raździalalnik"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Pakazać hety zapyt znoŭ "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tolki prahlad"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Miescaznachodžańnie tekstavaha fajła"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "tečka web-servera dla zahruzki fajłaŭ"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7229,51 +7302,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Niemahčyma prainicyjalizavać pravierku SQL. Kali łaska, praviercie, ci "
-"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ %"
-"sdakumentacyi%s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Dla hetaj mašyny zachavańnia dadzienych detalnaja infarmacyja nie dastupnaja."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s dastupnaja na hetym MySQL-servery."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s była adklučanaja dla retaha MySQL-servera."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Hety server MySQL nie padtrymlivaje mašynu zachavańnia dadzienych %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Niapravilnaja baza dadzienych"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Niekarektnaje imia tablicy"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Pamyłka pierajmienavańnia tablicy %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tablica %s była pierajmienavanaja ŭ %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"ŭstalavanyja ŭ vas nieabchodnyja pašyreńni PHP, jak heta apisana ŭ "
+"%sdakumentacyi%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7406,38 +7436,6 @@ msgstr "Aznačeńnie PARTITION"
msgid "+ Add a value"
msgstr "Dadać novaha karystalnika"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Dapuščalny šlach da malunkaŭ temy %s nia znojdzieny!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Papiaredni prahlad niedastupny."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "hetaja"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema pa zmoŭčańni %s nia znojdzienaja!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nia znojdzienaja!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nia znojdzieny šlach da temy %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7505,8 +7503,8 @@ msgstr ""
"dadadzienyja da mietki času (pa zmoŭčańni — 0). Druhi parametar "
"vykarystoŭvajcie, kab paznačyć inšy farmat daty/času. Treci parametar "
"vyznačaje typ daty, jakaja budzie pakazanaja: vašaja lakalnaja data albo "
-"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). U "
-"zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
+"data UTC (vykarystoŭvajcie dla hetaha parametry «local» i «utc» adpaviedna). "
+"U zaležnaści ad hetaha farmat daty maje roznyja značeńni: dla atrymańnia "
"parametraŭ lakalnaj daty hladzicie dakumentacyju dla funkcyi PHP strftime(), "
"a dla hrynvickaha času (parametar «utc») — dakumentacyju funkcyi gmdate()."
@@ -8571,8 +8569,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Zaŭvaha: phpMyAdmin atrymlivaje pryvilei karystalnikaŭ naŭprostava z tablic "
"pryvilejaŭ MySQL. Źmieściva hetych tablic moža adroźnivacca ad pryvilejaŭ, "
diff --git a/po/bg.po b/po/bg.po
index 22f5b00f70..d01918352e 100644
--- a/po/bg.po
+++ b/po/bg.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-23 14:27+0200\n"
"Last-Translator: \n"
"Language-Team: bulgarian \n"
+"Language: bg\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bg\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Търсене"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Търсене"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Изпълнение"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "БД %1$s беше създадена."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар към БД: "
@@ -132,9 +132,9 @@ msgstr "Коментар към БД: "
msgid "Table comments"
msgstr "Коментари към таблицата"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Коментари към таблицата"
msgid "Column"
msgstr "Kолона"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kолона"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Свързана към"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Размаркиране всички"
msgid "The database name is empty!"
msgstr "Името на БД е празно!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "БД %s беше преименувана на %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "БД %s беше копирана като %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименуване БД на"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Команда"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Изтриване БД"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "БД %s беше изтрита."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Изтриване на БД (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копиране на БД в"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структурата"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структурата и данните"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Само данните"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Изпълняване на CREATE DATABASE преди копирането"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Добавяне на %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Добавяне на AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Добавяне на ограничение"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Показване на копираната БД"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Показване на копираната БД"
msgid "Collation"
msgstr "Колация"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Хранилището за конфигурацията на phpMyAdmin е деактивирано. За да разберете "
"защо натиснете %sтук%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редакция или експорт на релационна схема"
@@ -498,109 +497,109 @@ msgstr "SQL заявка към БД %s:"
msgid "Submit Query"
msgstr "Изпълни заявката"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL заявката беше изпълнена успешно"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Позволява стартиране на съхранени процедури."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL върна празен резултат (т.е. нула редове)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL отговори: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Грешка при обработка на заявката"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "В БД няма таблици"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export as %s"
msgid "Export of routine %s"
msgstr "Експорт като %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Невалиден индекс на сървър: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Колоната %s беше изтрита"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Таблицата %1$s беше създадена."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create view"
msgid "Create routine"
msgstr "Създаване на изглед"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Редактиране"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -726,8 +725,8 @@ msgstr "Проследяването е неактивно."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Този изглед има поне толкова реда. Погледнете %sдокументацията%s"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -794,8 +793,8 @@ msgstr "Преглед за печат"
msgid "Empty"
msgstr "Изчистване"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -868,9 +867,9 @@ msgstr "Съвременен"
msgid "Status"
msgstr "Състояние"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -965,8 +964,8 @@ msgstr "Схемата беше записана във файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно сте направили опит да качите твърде голям файл. Моля, обърнете се "
"към %sдокументацията%s за да намерите начин да избегнете това ограничение."
@@ -1145,11 +1144,11 @@ msgstr "Изтриване на маркираните потребители"
msgid "Close"
msgstr "Затваряне"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редакция"
@@ -1686,6 +1685,216 @@ msgstr "минута"
msgid "Second"
msgstr "секунда"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Размер шрифт"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Подаденият файл беше само частично качен."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Липсва временна папка."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Запазването на файл на диска се провали."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Качването на файлът беше спряно от разширение."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Неизвестна грешка при качване."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Грешка при преместване на качения файл, вж. [a@./Documentation."
+"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Не е дефиниран индекс!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индекси"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникално"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Коментар"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Главния ключ беше изтрит"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекса %s беше изтрит"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да "
+"бъде премахнат."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "БД"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d повлиян ред."
+msgstr[1] "%1$d повлияни реда."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ред изтрит."
+msgstr[1] "%1$d реда изтрити."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ред добавен."
+msgstr[1] "%1$d реда добавени."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Конфигурацията не може да бъде запазена"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Отваряни таблици"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Няма наскоро отваряни таблици"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Няма детайлна информация за състоянието на това хранилище на данни."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s е разрешен на този MySQL сървър."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s е изключен за този MySQL сървър."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Невалидна БД"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Невалидно име на таблица"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Грешка при преименуване на таблица %1$s в %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблица %s беше преименувана на %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Не открито изображение към тема %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Прегледът не е достъпен."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "тази ще е"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Темата по подразбиране %s не е намерена!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тема %s не е намерена!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Не е открит път към тема %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Връзката не може да бъде осъществена: невалидни настройки."
@@ -1699,8 +1908,8 @@ msgstr "Добре дошли в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Изглежда не се създали конфигурационен файл. Вероятно ще искате да "
"използвате %1$sскрипта за настройки%2$s, за да го създадете"
@@ -1805,14 +2014,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1865,11 +2066,6 @@ msgstr "Таблици"
msgid "Data"
msgstr "Данни"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индекси"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2150,9 +2346,77 @@ msgstr "Няма файлве за качване"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Размер шрифт"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "И двете"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Ляво"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Дясно"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Отворен"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "данни"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура и данни"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "пълни INSERT-и"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "разширени INSERT-и"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "и двете по-горе"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "никое от горните"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2784,12 +3048,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "БД"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Опции за показване на БД"
@@ -4260,78 +4518,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "И двете"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Ляво"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Дясно"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Отворен"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "данни"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура и данни"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "пълни INSERT-и"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "разширени INSERT-и"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "и двете по-горе"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "никое от горните"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4399,23 +4585,6 @@ msgstr ""
msgid "Add an event"
msgstr "Добавяне на събитие"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Няма отговор от сървъра"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Подробности..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4485,9 +4654,9 @@ msgstr "Дължина/Стойности"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4544,11 +4713,6 @@ msgstr "Сигурност"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Коментар"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4613,6 +4777,23 @@ msgstr ""
"Може да има приблизителна стойност. Виж [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Няма отговор от сървъра"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Подробности..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4753,8 +4934,8 @@ msgstr ", @TABLE@ ще стане името на таблицата"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5454,8 +5635,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5738,44 +5919,6 @@ msgstr "Изглед"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Качваният файл надвижава директивата upload_max_filesize от php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Подаденият файл беше само частично качен."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Липсва временна папка."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Запазването на файл на диска се провали."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Качването на файлът беше спряно от разширение."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Неизвестна грешка при качване."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Грешка при преместване на качения файл, вж. [a@./Documentation."
-"html#faq1_11@Documentation]ЧЗВ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5795,6 +5938,40 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирано от"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5854,40 +6031,6 @@ msgstr "Име на колона"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5910,42 +6053,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Не е дефиниран индекс!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникално"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Главния ключ беше изтрит"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекса %s беше изтрит"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Индексите %1$s и %2$s изглеждат равнозначни и един от двата вероятно може да "
-"бъде премахнат."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5956,27 +6063,6 @@ msgstr "Няма"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d повлиян ред."
-msgstr[1] "%1$d повлияни реда."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ред изтрит."
-msgstr[1] "%1$d реда изтрити."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ред добавен."
-msgstr[1] "%1$d реда добавени."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "От"
@@ -6215,20 +6301,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Този формат няма опции"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Конфигурацията не може да бъде запазена"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Отваряни таблици"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Няма наскоро отваряни таблици"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не е OK"
@@ -6602,6 +6674,61 @@ msgstr "Различия"
msgid "Target database"
msgstr "Целева БД"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изпълняване на SQL заявка/заявки на сървър %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изпълнение на SQL заявка/заявки към БД %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Изчистване"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Колони"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Отбелязване SQL заявката"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Всеки потребител да има достъп до тази белязка"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замяна белязката със същото име"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не препокривайте тази заявка извън този прозорец"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разделител"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Показване на заявката отново "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Само показване"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Местоположение на текстовия файл"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директорията за upload на web сървъра"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6665,61 +6792,6 @@ msgstr "Невалиден идентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат пунктуационен низ"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изпълняване на SQL заявка/заявки на сървър %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изпълнение на SQL заявка/заявки към БД %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Изчистване"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Колони"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Отбелязване SQL заявката"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Всеки потребител да има достъп до тази белязка"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замяна белязката със същото име"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не препокривайте тази заявка извън този прозорец"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разделител"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Показване на заявката отново "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Само показване"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Местоположение на текстовия файл"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директорията за upload на web сървъра"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6727,50 +6799,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL валидаторът не може да бъде инициализиран. Моля проверете дали са "
-"инсталирани необходимите PHP разширения, както е описано в %sдокументацията%"
-"s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Няма детайлна информация за състоянието на това хранилище на данни."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s е разрешен на този MySQL сървър."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s е изключен за този MySQL сървър."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Този MySQL сървър не поддържа хранилището на данни %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Невалидна БД"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Невалидно име на таблица"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Грешка при преименуване на таблица %1$s в %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблица %s беше преименувана на %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"инсталирани необходимите PHP разширения, както е описано в %sдокументацията"
+"%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -6893,38 +6923,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "+ Добавяне на нова стойност"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Не открито изображение към тема %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Прегледът не е достъпен."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "тази ще е"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Темата по подразбиране %s не е намерена!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тема %s не е намерена!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Не е открит път към тема %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7478,8 +7476,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез %"
-"sскрипта за настройки%s."
+"Имате достъп до още настройки, модифицирайки config.inc.php, примерно чрез "
+"%sскрипта за настройки%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -7929,8 +7927,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Забележка: phpMyAdmin взема потребителските права директно от таблицата с "
"правата на MySQL. Съдържанието на тази таблица може да се различава от "
@@ -10071,8 +10069,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка %"
-"s."
+"Няма поддръжка на теми, моля, проверете конфигурацията и/или темите в папка "
+"%s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/bn.po b/po/bn.po
index ffa9c80b89..1acb4dcac9 100644
--- a/po/bn.po
+++ b/po/bn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-10-21 01:36+0200\n"
"Last-Translator: Nobin নবীন \n"
"Language-Team: bangla \n"
+"Language: bn\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: bn\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "খুঁজুন"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "খুঁজুন"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "যাও"
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
@@ -130,9 +130,9 @@ msgstr "ডাটাবেজ মন্তব্যসমূহঃ"
msgid "Table comments"
msgstr "টেবিলের মন্তব্য সমূহ"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "টেবিলের মন্তব্য সমূহ"
msgid "Column"
msgstr "কলামের"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "কলামের"
msgid "Type"
msgstr "ধরন"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +196,12 @@ msgstr "সংযুক্তি হবে"
msgid "Comments"
msgstr "মন্তব্যসমূহ"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +212,17 @@ msgstr "মন্তব্যসমূহ"
msgid "No"
msgstr "না"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -260,82 +259,82 @@ msgstr "সবগুলো অনির্বাচিত হোক"
msgid "The database name is empty!"
msgstr "ডাটাবেজ এর নাম দেওয়া হয়নি"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "%s ডাটাবেজটির নাম পরিবর্তন করে %s নাম দেওয়া হয়েছে"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "%s ডাটাবেজ় %s তে কপি করা হয়েছে"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "ডাটাবেজ রিনেম কর"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "নির্দেশ"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "ডাটাবেজ রিনেম কর"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s ডাটাবেজ মুছে ফেলা হয়েছে"
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "কোন ডাটাবেজ নাই"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "ডাটাবেজ কপি করঃ"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "শুধুই গঠনপ্রণালী"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "গঠনপ্রণালী এবং তথ্য"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "শুধু ডাটা"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "কপি করার আগে ডাটাবেজ় তৈরী কর"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "সংযুক্ত %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT এর মান সংযুক্ত করুন"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "constraints সংযুক্ত করুন"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তিত হবে"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "অনুলিপি ডাটাবেজ এ পরিবর্তি
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +355,7 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -509,104 +508,104 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Allows executing stored routines."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL said: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Processes"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "ডাটাবেজ এ কোন টেবিল পাওয়া যায়নি।"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "ফাইল ইম্পোর্ট কর"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Invalid server index: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Table %s has been dropped"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Table %s has been dropped"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Server version"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -743,8 +742,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -811,8 +810,8 @@ msgstr "Print view"
msgid "Empty"
msgstr "খালি"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -893,9 +892,9 @@ msgstr ""
msgid "Status"
msgstr "অবস্থা"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -993,11 +992,11 @@ msgstr "ডাম্প %s ফাইল এ সেভ করা হয়েছে
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1185,11 +1184,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "সম্পাদনা কর"
@@ -1814,6 +1813,219 @@ msgstr "in use"
msgid "Second"
msgstr "per second"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "ফন্ট এর আকার"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ইন্ডেস্ক সমূহ"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "মন্তব্যসমূহ"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ডাটাবেজসমূহ Databases"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "ভূল"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "No rows selected"
+msgstr[1] "No rows selected"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "No rows selected"
+msgstr[1] "No rows selected"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "কোন টেবিল নাই"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "টেবিল পরীক্ষা কর"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Invalid database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Invalid table name"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "সংযোগ স্থাপন করা যায়নিঃ invalid settings."
@@ -1827,8 +2039,8 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"সম্ভবত আপনি কনফিগারেশন ফাইল তৈরী করেননি। আপনি %1$ssetup script%2$s ব্যাবহার "
"করে একটি তৈরী করতে পারেন "
@@ -1935,14 +2147,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL connection collation"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "ভূল"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1995,11 +2199,6 @@ msgstr "টেবিলসমূহ"
msgid "Data"
msgstr "ডাটা"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ইন্ডেস্ক সমূহ"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2288,9 +2487,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "ফন্ট এর আকার"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Structure and data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Complete inserts"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2965,12 +3241,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ডাটাবেজসমূহ Databases"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4525,87 +4795,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Structure and data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Complete inserts"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4673,23 +4862,6 @@ msgstr ""
msgid "Add an event"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "The server is not responding"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4762,9 +4934,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4822,12 +4994,6 @@ msgstr "Query type"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "মন্তব্যসমূহ"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4889,6 +5055,23 @@ msgid ""
"3.11[/a]"
msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "The server is not responding"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5057,12 +5240,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5824,8 +6007,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6145,43 +6328,6 @@ msgstr "View"
msgid "Export contents"
msgstr "Export type"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "হয়ত আনুমানিক। FAQ ৩.১১ দেখ। "
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6199,6 +6345,42 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "কোন ডাটাবেজ নাই"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6262,42 +6444,6 @@ msgstr "কলামের নাম"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "কোন ডাটাবেজ নাই"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "কোন ডাটাবেজ নাই"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6322,40 +6468,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s ইন্ডেস্ক মুছে ফেলা হয়েছে"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6368,29 +6480,6 @@ msgstr "কোনটিই নয়"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "No rows selected"
-msgstr[1] "No rows selected"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "No rows selected"
-msgstr[1] "No rows selected"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6633,22 +6722,6 @@ msgstr ""
msgid "This format has no options"
msgstr "This format has no options"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "\"%1$s\" হতে ডিফল্ট কনফিগারেশন লোড করা যায়নি"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "কোন টেবিল নাই"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "টেবিল পরীক্ষা কর"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ঠিক নাই"
@@ -7042,6 +7115,64 @@ msgstr ""
msgid "Target database"
msgstr "ডাটাবে এ খুজুঁনSearch in database"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "ক্যালেন্ডার"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "কলামের নাম"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "এই SQL query টি বুকমার্ক করুন"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimiter"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "শুধু দেখ"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7104,64 +7235,6 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "ক্যালেন্ডার"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "কলামের নাম"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "এই SQL query টি বুকমার্ক করুন"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "সব ব্যাক্তিকে এই বুকমার্কটি দেখার সুযোগ দিন"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "একই নামের বর্তমান বুকমার্ক প্রতিস্থাপন করুন"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimiter"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "শুধু দেখ"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7171,49 +7244,6 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "MySQL সার্ভার এর জন্য %s বন্ধ করা হয়েছে ."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "এই MySQL সার্ভার %s ধরনের স্টোরেজ ইঞ্জিন সমর্থন করেনা."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Invalid database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Invalid table name"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7344,38 +7374,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "একটি নতুন ইউজার যোগ করুন"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8490,13 +8488,13 @@ msgstr "ব্যাবহারকারীর নামে নাম এমন
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/br.po b/po/br.po
index f977f1f058..25fab6d648 100644
--- a/po/br.po
+++ b/po/br.po
@@ -7,14 +7,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-24 12:54+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-26 20:07+0200\n"
"Last-Translator: \n"
"Language-Team: LANGUAGE \n"
+"Language: br\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: br\n"
"Plural-Forms: nplurals=2; plural=n > 1;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -30,7 +30,7 @@ msgstr "Diskouez pep tra"
#: libraries/schema/Pdf_Relation_Schema.class.php:1111
#: libraries/schema/User_Schema.class.php:356
msgid "Page number:"
-msgstr "Pajenn niv. :"
+msgstr "Pajenn niv. : "
#: browse_foreigners.php:133
msgid ""
@@ -49,13 +49,13 @@ msgstr ""
msgid "Search"
msgstr "Klask"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -68,18 +68,18 @@ msgstr "Klask"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Mont"
@@ -126,7 +126,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Krouet eo bet an diaz roadennoù %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Evezhiadenn diwar-benn an diaz roadennoù : "
@@ -136,9 +136,9 @@ msgstr "Evezhiadenn diwar-benn an diaz roadennoù : "
msgid "Table comments"
msgstr "Evezhiadennoù diwar-benn an daolenn"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -147,12 +147,12 @@ msgstr "Evezhiadennoù diwar-benn an daolenn"
msgid "Column"
msgstr "Bann"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -162,9 +162,9 @@ msgstr "Bann"
msgid "Type"
msgstr "Seurt"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -202,13 +202,12 @@ msgstr "Liammet ouzh"
msgid "Comments"
msgstr "Evezhiadennoù"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -219,17 +218,17 @@ msgstr "Evezhiadennoù"
msgid "No"
msgstr "Ket"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -266,79 +265,79 @@ msgstr "Diziuzañ pep tra"
msgid "The database name is empty!"
msgstr "Goullo eo anv an diaz roadennoù !"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Deuet eo anv an diaz roadennoù %s da vezañ %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Eilet eo bet an diaz roadennoù %s war %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Cheñch anv an diaz roadennoù hag e envel"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Urzhiad"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Dilemel an diaz roadennoù"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Diverket eo bet an diaz roadennoù %s."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Diverkañ an diaz roadennoù (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Eilañ an diaz roadennoù war"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Ar framm hepken"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Ar framm hag ar roadennoù ennañ"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Ar roadennoù hepken"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "KROUIÑ AN DIAZ ROADENNOÙ a-raok eilañ"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Ouzhpennañ %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Ouzhpennañ talvoud an AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Ouzhpennañ ar strishadurioù"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mont d'an diaz roadennoù eilet"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -347,7 +346,7 @@ msgstr "Mont d'an diaz roadennoù eilet"
msgid "Collation"
msgstr "Etrerummadiñ"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -356,7 +355,7 @@ msgstr ""
"Diweredekaet eo bet ar stokañ kefluniadurioù evit phpMyAdmin. Evit gouzout "
"perak klikañ %samañ%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Embann pe ezporzhiañ ur chema kar"
@@ -502,98 +501,98 @@ msgstr "Reked SQL ouzh an diaz roadennoù %s:"
msgid "Submit Query"
msgstr "Kas ar reked"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Sevenet eo bet ho reked SQL ervat"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh"
msgstr[1] "Tizhet ez eus bet %d linenn dre embannadenn ziwezhañ an argerzh"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Disoc'hoù seveniñ an argerzh %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "Distroet ez eus un disoc'h goullo gant MySQL (linenn ebet)"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
-msgstr ""
+msgstr "C'hwitet eo bet ar reked da-heul : \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "respontet eo bet gant MySQL : "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Fazi en ur seveniñ ar reked"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
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"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Seveniñ an argerzh"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Ezporzhiañ an argerzh %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Seurt argerzh faziek : \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Ho tigarez, disposupl eo bet assevel an argerzh."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "Setu amañ ar reked a oa bet miret :"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Kemmet eo bet an argerzh %1s."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Krouet eo bet an argerzh %1s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "Ur fazi, pe meur a hini, zo bet en ur seveniñ ho koulenn :"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Krouiñ un argerzh"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Kemmañ un argerzh"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -722,11 +721,11 @@ msgstr "N'eo ket oberiant an heuliañ."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an %"
-"steulioù titouriñ%s."
+"Da nebeutañ emañ an niver a linennoù-mañ er Gweled-mañ. Sellit ouzh an "
+"%steulioù titouriñ%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -792,8 +791,8 @@ msgstr "Stumm da voullañ"
msgid "Empty"
msgstr "Goullonderiñ"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -866,9 +865,9 @@ msgstr "Hizivaet"
msgid "Status"
msgstr "Statud"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -962,11 +961,11 @@ msgstr "Enrollet eo bet ar restr ezporzhiañ e%s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround 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:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1043,130 +1042,133 @@ msgstr "Distreiñ"
#: index.php:183
msgid "phpMyAdmin is more friendly with a frames-capable browser."
msgstr ""
+"Un tamm aesoc'h eo phpMyAdmin gant ur merdeer a skor ar frammoù."
#: js/messages.php:25 server_synchronize.php:340 server_synchronize.php:352
#: server_synchronize.php:368 server_synchronize.php:375
#: server_synchronize.php:734 server_synchronize.php:762
#: server_synchronize.php:790 server_synchronize.php:802
msgid "Click to select"
-msgstr ""
+msgstr "Klikañ evit diuzañ"
#: js/messages.php:26
msgid "Click to unselect"
-msgstr ""
+msgstr "Klikañ evit diziuzañ"
#: js/messages.php:27 libraries/import.lib.php:103 sql.php:214
msgid "\"DROP DATABASE\" statements are disabled."
-msgstr ""
+msgstr "Diweredekaet eo an urzhad ''DROP DATABASE'"
#: js/messages.php:30 libraries/mult_submits.inc.php:282 sql.php:312
msgid "Do you really want to "
-msgstr ""
+msgstr "Ha sur oc'h e fell deoc'h "
#: js/messages.php:31 libraries/mult_submits.inc.php:282 sql.php:297
msgid "You are about to DESTROY a complete database!"
-msgstr ""
+msgstr "Emaoc'h war-nes DISTRUJ un diaz roadennoù klok !"
#: js/messages.php:32
msgid "You are about to DESTROY a complete table!"
-msgstr ""
+msgstr "Emaoc'h war-nes DISTRUJ un daolennad glok !"
#: js/messages.php:33
msgid "You are about to TRUNCATE a complete table!"
-msgstr ""
+msgstr "Emaoc'h war-nes RIÑSAÑ un daolennad penn-da-benn !"
#: js/messages.php:35
msgid "Deleting tracking data"
-msgstr ""
+msgstr "O tiverkañ ar roadennoù heuliañ"
#: js/messages.php:36
msgid "Dropping Primary Key/Index"
-msgstr ""
+msgstr "O tistruj an Alc'hwez kentidik/Meneger"
#: js/messages.php:37
msgid "This operation could take a long time. Proceed anyway?"
-msgstr ""
+msgstr "Pell e c'hall padout an oberiadenn-mañ. Kenderc'hel memes tra ?"
#: js/messages.php:40
msgid "You are about to DISABLE a BLOB Repository!"
-msgstr ""
+msgstr "Emaoc'h war-nes DIWEREDEKAAT ur c'havlec'h BLOB !"
#: js/messages.php:41
#, php-format
msgid "Are you sure you want to disable all BLOB references for database %s?"
msgstr ""
+"Ha sur oc'h e fell deoc'h diweredekaat an holl zaveennoù BLOB evit an diaz "
+"roadennoù %s ?"
#: js/messages.php:44
msgid "Missing value in the form!"
-msgstr ""
+msgstr "Furmskrid diglok !"
#: js/messages.php:45
msgid "This is not a number!"
-msgstr ""
+msgstr "N'eo ket hemañ un niver !"
#. l10n: Default description for the y-Axis of Charts
#: js/messages.php:49
msgid "Total count"
-msgstr ""
+msgstr "Sammad hollek"
#: js/messages.php:52
msgid "The host name is empty!"
-msgstr ""
+msgstr "Goullo eo anv ar servijer !"
#: js/messages.php:53
msgid "The user name is empty!"
-msgstr ""
+msgstr "Goullo eo anv an implijer !"
#: js/messages.php:54 server_privileges.php:1221 user_password.php:64
msgid "The password is empty!"
-msgstr ""
+msgstr "Goullo eo ar ger-tremen !"
#: js/messages.php:55 server_privileges.php:1219 user_password.php:67
msgid "The passwords aren't the same!"
-msgstr ""
+msgstr "Ne glot ket ar gerioù-tremen !"
#: js/messages.php:56 server_privileges.php:1679 server_privileges.php:1703
#: server_privileges.php:2108 server_privileges.php:2302
msgid "Add user"
-msgstr ""
+msgstr "Ouzhpennañ un implijer"
#: js/messages.php:57
msgid "Reloading Privileges"
-msgstr ""
+msgstr "Oc'h adkargañ an dreistgwirioù"
#: js/messages.php:58
msgid "Removing Selected Users"
-msgstr ""
+msgstr "O lemel kuit an implijerien diuzet"
#: js/messages.php:59 libraries/tbl_properties.inc.php:772
#: tbl_tracking.php:244 tbl_tracking.php:409
msgid "Close"
-msgstr ""
+msgstr "Serriñ"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
-msgstr ""
+msgstr "Kemmañ"
#: js/messages.php:64 server_status.php:420
msgid "Live traffic chart"
-msgstr ""
+msgstr "Grafik an tremenerezh evel m'emañ diouzhtu"
#: js/messages.php:65 server_status.php:423
msgid "Live conn./process chart"
-msgstr ""
+msgstr "Grafik ar c'hevreadennoù hag argerzhioù evel m'emaint diouzhtu"
#: js/messages.php:66 server_status.php:445
msgid "Live query chart"
-msgstr ""
+msgstr "Grafik ar rekedoù evel m'emaint diouzhtu"
#: js/messages.php:68
msgid "Static data"
-msgstr ""
+msgstr "Roadennoù stadegel"
#. l10n: Total number of queries
#: js/messages.php:70 libraries/build_html_for_db.lib.php:45
@@ -1174,164 +1176,165 @@ msgstr ""
#: server_status.php:701 server_status.php:762 tbl_printview.php:348
#: tbl_structure.php:832
msgid "Total"
-msgstr ""
+msgstr "Hollad"
#. l10n: Other, small valued, queries
#: js/messages.php:72 server_status.php:602
msgid "Other"
-msgstr ""
+msgstr "Udb all"
#. l10n: Thousands separator
#: js/messages.php:74 libraries/common.lib.php:1374
msgid ","
-msgstr ""
+msgstr " "
#. l10n: Decimal separator
#: js/messages.php:76 libraries/common.lib.php:1376
msgid "."
-msgstr ""
+msgstr "."
#: js/messages.php:78
msgid "KiB sent since last refresh"
-msgstr ""
+msgstr "Kio treuzkaset abaoe ar freskadenn ziwezhañ"
#: js/messages.php:79
msgid "KiB received since last refresh"
-msgstr ""
+msgstr "Kio resevet abaoe ar freskadenn ziwezhañ"
#: js/messages.php:80
msgid "Server traffic (in KiB)"
-msgstr ""
+msgstr "Tremenerezh war ar servijer (e Kio)"
#: js/messages.php:81
msgid "Connections since last refresh"
-msgstr ""
+msgstr "Kevreadennoù abaoe ar freskadenn ziwezhañ"
#: js/messages.php:82 server_status.php:794
msgid "Processes"
-msgstr ""
+msgstr "Argerzhioù"
#: js/messages.php:83
msgid "Connections / Processes"
-msgstr ""
+msgstr "Kevreadennoù/Argerzhioù"
#: js/messages.php:84
msgid "Issued queries since last refresh"
-msgstr ""
+msgstr "Rekedoù resevet abaoe ar freskadenn ziwezhañ"
#: js/messages.php:85
msgid "Issued queries"
-msgstr ""
+msgstr "Rekedoù resevet"
#: js/messages.php:87 server_status.php:402
msgid "Query statistics"
-msgstr ""
+msgstr "Stadegoù war ar rekedoù"
#: js/messages.php:91 libraries/tbl_properties.inc.php:777 pmd_general.php:388
#: pmd_general.php:425 pmd_general.php:545 pmd_general.php:593
#: pmd_general.php:669 pmd_general.php:723 pmd_general.php:786
msgid "Cancel"
-msgstr ""
+msgstr "Nullañ"
#: js/messages.php:94
msgid "Loading"
-msgstr ""
+msgstr "O kargañ"
#: js/messages.php:95
msgid "Processing Request"
-msgstr ""
+msgstr "O plediñ gant ar reked"
#: js/messages.php:96 libraries/db_events.inc.php:39
#: libraries/display_triggers.inc.php:46 libraries/import/ods.php:80
msgid "Error in Processing Request"
-msgstr ""
+msgstr "Fazi en ur blediñ gant ar reked"
#: js/messages.php:97
msgid "Dropping Column"
-msgstr ""
+msgstr "Diverkañ ar bann"
#: js/messages.php:98
msgid "Adding Primary Key"
-msgstr ""
+msgstr "Ouzhpennañ un alc'hwez kentidik"
#: js/messages.php:99 libraries/relation.lib.php:87 pmd_general.php:386
#: pmd_general.php:543 pmd_general.php:591 pmd_general.php:667
#: pmd_general.php:721 pmd_general.php:784
msgid "OK"
-msgstr ""
+msgstr "Mat eo"
#: js/messages.php:102
msgid "Renaming Databases"
-msgstr ""
+msgstr "Oc'h adenvel an diaz roadennoù"
#: js/messages.php:103
msgid "Reload Database"
-msgstr ""
+msgstr "Adkargañ an diaz roadennoù"
#: js/messages.php:104
msgid "Copying Database"
-msgstr ""
+msgstr "Oc'h eilañ an diaz roadennoù"
#: js/messages.php:105
msgid "Changing Charset"
-msgstr ""
+msgstr "O cheñch ar strobad arouezennoù"
#: js/messages.php:106
msgid "Table must have at least one column"
-msgstr ""
+msgstr "Ur bann a rank bezañ en daolenn, da nebeutañ"
#: js/messages.php:107
msgid "Create Table"
-msgstr ""
+msgstr "Krouiñ un daolenn"
#: js/messages.php:112
msgid "Insert Table"
-msgstr ""
+msgstr "Ensoc'hañ un daolenn"
#: js/messages.php:115
msgid "Searching"
-msgstr ""
+msgstr "O klask"
#: js/messages.php:116
msgid "Hide search results"
-msgstr ""
+msgstr "Kuzhat disoc'hoù an enklask"
#: js/messages.php:117
msgid "Show search results"
-msgstr ""
+msgstr "Diskouez disoc'hoù an enklask"
#: js/messages.php:118
msgid "Browsing"
-msgstr ""
+msgstr "O furchal"
#: js/messages.php:119
msgid "Deleting"
-msgstr ""
+msgstr "O tiverkañ"
#: js/messages.php:122
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
+"Bez' e rank bezañ un embannadenn RETURN e termenadur un arc'hwel stoket"
#: js/messages.php:123
msgid "Value too long in the form!"
-msgstr ""
+msgstr "Talvoud re hir er furmskrid !"
#: js/messages.php:126
msgid ""
"Note: If the file contains multiple tables, they will be combined into one"
-msgstr ""
+msgstr "Notenn : ma vez meur a daolenn er restr e vint unanet."
#: js/messages.php:129
msgid "Hide query box"
-msgstr ""
+msgstr "Kuzhat ar voest rekedoù SQL"
#: js/messages.php:130
msgid "Show query box"
-msgstr ""
+msgstr "Diskouez ar voest rekedoù SQL"
#: js/messages.php:131
msgid "Inline Edit"
-msgstr ""
+msgstr "Kemmañ enlinenn"
#: js/messages.php:133 libraries/config/FormDisplay.tpl.php:332
#: libraries/schema/User_Schema.class.php:313
@@ -1339,77 +1342,79 @@ msgstr ""
#: setup/frames/index.inc.php:227 tbl_change.php:976
#: tbl_gis_visualization.php:222 tbl_indexes.php:253 tbl_relation.php:563
msgid "Save"
-msgstr ""
+msgstr "Enrollañ"
#: js/messages.php:134 libraries/display_tbl.lib.php:637 pmd_general.php:158
#: tbl_change.php:316 tbl_change.php:322
msgid "Hide"
-msgstr ""
+msgstr "Kuzhat"
#: js/messages.php:135 tbl_row_action.php:28
msgid "No rows selected"
-msgstr ""
+msgstr "N'eus bet diuzet linenn ebet"
#: js/messages.php:136 libraries/display_tbl.lib.php:2384 querywindow.php:114
#: querywindow.php:118 querywindow.php:121 tbl_structure.php:152
#: tbl_structure.php:602
msgid "Change"
-msgstr ""
+msgstr "Kemmañ"
#: js/messages.php:139
msgid "Hide search criteria"
-msgstr ""
+msgstr "Kuzhat an dezverkoù klask"
#: js/messages.php:140
msgid "Show search criteria"
-msgstr ""
+msgstr "Diskouez an dezverkoù enklask"
#: js/messages.php:143 tbl_change.php:304 tbl_indexes.php:203
#: tbl_indexes.php:230
msgid "Ignore"
-msgstr ""
+msgstr "Na ober van"
#: js/messages.php:146
msgid "Select referenced key"
-msgstr ""
+msgstr "Diuzit an alc'hwez daveet"
#: js/messages.php:147
msgid "Select Foreign Key"
-msgstr ""
+msgstr "Diuzit an alc'hwez estren"
#: js/messages.php:148
msgid "Please select the primary key or a unique key"
-msgstr ""
+msgstr "Diuzit an alc'hwez kentidik pe un alc'hwez nemetañ"
#: js/messages.php:149 pmd_general.php:87 tbl_relation.php:545
msgid "Choose column to display"
-msgstr ""
+msgstr "Dibab ar bann da ziskouez"
#: js/messages.php:150
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 ""
+"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:153
msgid "Add an option for column "
-msgstr ""
+msgstr "Ouzhpennañ un dibarzh evit ar bann "
#: js/messages.php:156
msgid "Generate password"
-msgstr ""
+msgstr "Genel ur ger-tremen"
#: js/messages.php:157 libraries/replication_gui.lib.php:365
msgid "Generate"
-msgstr ""
+msgstr "Genel"
#: js/messages.php:158
msgid "Change Password"
-msgstr ""
+msgstr "Cheñch ger-tremen"
#: js/messages.php:161 tbl_structure.php:497
msgid "More"
-msgstr ""
+msgstr "Muioc'h"
#: js/messages.php:164 setup/lib/index.lib.php:158
#, php-format
@@ -1417,25 +1422,27 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
+"Ur stumm nevesoc'h eus phpMyAdmin zo bremañ ha mat e vefe deoc'h soñjal "
+"hizivaat ho hini. Setu ar stumm nevesañ %s, embannet eo bet d'an %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:166
msgid ", latest stable version:"
-msgstr ""
+msgstr ", stumm stabil diwezhañ"
#: js/messages.php:167
msgid "up to date"
-msgstr ""
+msgstr "hizivaet"
#. l10n: Display text for calendar close link
#: js/messages.php:185
msgid "Done"
-msgstr ""
+msgstr "Graet"
#. l10n: Display text for previous month link in calendar
#: js/messages.php:187
msgid "Prev"
-msgstr ""
+msgstr "Kent"
#. l10n: Display text for next month link in calendar
#: js/messages.php:189 libraries/common.lib.php:2308
@@ -1443,253 +1450,467 @@ msgstr ""
#: server_binlog.php:189 server_binlog.php:191 tbl_printview.php:421
#: tbl_structure.php:937
msgid "Next"
-msgstr ""
+msgstr "War-lerc'h"
#. l10n: Display text for current month link in calendar
#: js/messages.php:191
msgid "Today"
-msgstr ""
+msgstr "Hiziv"
#: js/messages.php:194
msgid "January"
-msgstr ""
+msgstr "Genver"
#: js/messages.php:195
msgid "February"
-msgstr ""
+msgstr "C'hwevrer"
#: js/messages.php:196
msgid "March"
-msgstr ""
+msgstr "Meurzh"
#: js/messages.php:197
msgid "April"
-msgstr ""
+msgstr "Ebrel"
#: js/messages.php:198
msgid "May"
-msgstr ""
+msgstr "Mae"
#: js/messages.php:199
msgid "June"
-msgstr ""
+msgstr "Mezheven"
#: js/messages.php:200
msgid "July"
-msgstr ""
+msgstr "Gouere"
#: js/messages.php:201
msgid "August"
-msgstr ""
+msgstr "Eost"
#: js/messages.php:202
msgid "September"
-msgstr ""
+msgstr "Gwengolo"
#: js/messages.php:203
msgid "October"
-msgstr ""
+msgstr "Here"
#: js/messages.php:204
msgid "November"
-msgstr ""
+msgstr "Du"
#: js/messages.php:205
msgid "December"
-msgstr ""
+msgstr "Kerzu"
#. l10n: Short month name
#: js/messages.php:209 libraries/common.lib.php:1511
msgid "Jan"
-msgstr ""
+msgstr "Gen"
#. l10n: Short month name
#: js/messages.php:211 libraries/common.lib.php:1513
msgid "Feb"
-msgstr ""
+msgstr "C'hwe"
#. l10n: Short month name
#: js/messages.php:213 libraries/common.lib.php:1515
msgid "Mar"
-msgstr ""
+msgstr "Meu"
#. l10n: Short month name
#: js/messages.php:215 libraries/common.lib.php:1517
msgid "Apr"
-msgstr ""
+msgstr "Ebr"
#. l10n: Short month name
#: js/messages.php:217 libraries/common.lib.php:1519
msgctxt "Short month name"
msgid "May"
-msgstr ""
+msgstr "Mae"
#. l10n: Short month name
#: js/messages.php:219 libraries/common.lib.php:1521
msgid "Jun"
-msgstr ""
+msgstr "Mezh"
#. l10n: Short month name
#: js/messages.php:221 libraries/common.lib.php:1523
msgid "Jul"
-msgstr ""
+msgstr "Goue"
#. l10n: Short month name
#: js/messages.php:223 libraries/common.lib.php:1525
msgid "Aug"
-msgstr ""
+msgstr "Eost"
#. l10n: Short month name
#: js/messages.php:225 libraries/common.lib.php:1527
msgid "Sep"
-msgstr ""
+msgstr "Gwen"
#. l10n: Short month name
#: js/messages.php:227 libraries/common.lib.php:1529
msgid "Oct"
-msgstr ""
+msgstr "Here"
#. l10n: Short month name
#: js/messages.php:229 libraries/common.lib.php:1531
msgid "Nov"
-msgstr ""
+msgstr "Du"
#. l10n: Short month name
#: js/messages.php:231 libraries/common.lib.php:1533
msgid "Dec"
-msgstr ""
+msgstr "Kzu"
#: js/messages.php:234
msgid "Sunday"
-msgstr ""
+msgstr "Sul"
#: js/messages.php:235
msgid "Monday"
-msgstr ""
+msgstr "Lun"
#: js/messages.php:236
msgid "Tuesday"
-msgstr ""
+msgstr "Meurzh"
#: js/messages.php:237
msgid "Wednesday"
-msgstr ""
+msgstr "Merc'her"
#: js/messages.php:238
msgid "Thursday"
-msgstr ""
+msgstr "Yaou"
#: js/messages.php:239
msgid "Friday"
-msgstr ""
+msgstr "Gwener"
#: js/messages.php:240
msgid "Saturday"
-msgstr ""
+msgstr "Sadorn"
#. l10n: Short week day name
#: js/messages.php:244 libraries/common.lib.php:1536
msgid "Sun"
-msgstr ""
+msgstr "Sul"
#. l10n: Short week day name
#: js/messages.php:246 libraries/common.lib.php:1538
msgid "Mon"
-msgstr ""
+msgstr "Lun"
#. l10n: Short week day name
#: js/messages.php:248 libraries/common.lib.php:1540
msgid "Tue"
-msgstr ""
+msgstr "Meu"
#. l10n: Short week day name
#: js/messages.php:250 libraries/common.lib.php:1542
msgid "Wed"
-msgstr ""
+msgstr "Mer"
#. l10n: Short week day name
#: js/messages.php:252 libraries/common.lib.php:1544
msgid "Thu"
-msgstr ""
+msgstr "Yaou"
#. l10n: Short week day name
#: js/messages.php:254 libraries/common.lib.php:1546
msgid "Fri"
-msgstr ""
+msgstr "Gwe"
#. l10n: Short week day name
#: js/messages.php:256 libraries/common.lib.php:1548
msgid "Sat"
-msgstr ""
+msgstr "Sad"
#. l10n: Minimal week day name
#: js/messages.php:260
msgid "Su"
-msgstr ""
+msgstr "Su"
#. l10n: Minimal week day name
#: js/messages.php:262
msgid "Mo"
-msgstr ""
+msgstr "L"
#. l10n: Minimal week day name
#: js/messages.php:264
msgid "Tu"
-msgstr ""
+msgstr "Mz"
#. l10n: Minimal week day name
#: js/messages.php:266
msgid "We"
-msgstr ""
+msgstr "Mc"
#. l10n: Minimal week day name
#: js/messages.php:268
msgid "Th"
-msgstr ""
+msgstr "Y"
#. l10n: Minimal week day name
#: js/messages.php:270
msgid "Fr"
-msgstr ""
+msgstr "G"
#. l10n: Minimal week day name
#: js/messages.php:272
msgid "Sa"
-msgstr ""
+msgstr "Sa"
#. l10n: Column header for week of the year in calendar
#: js/messages.php:274
msgid "Wk"
-msgstr ""
+msgstr "Sizh."
#: js/messages.php:276
msgid "Hour"
-msgstr ""
+msgstr "Eur"
#: js/messages.php:277
msgid "Minute"
-msgstr ""
+msgstr "Munut"
#: js/messages.php:278
msgid "Second"
+msgstr "Eilenn"
+
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Ment an destenn"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
msgstr ""
+"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar "
+"c'hemennad upload_max_filesize directive e php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Brasoc'h eo ment ar restr pellgarget eget ar vevenn aotreet gant ar "
+"c'hemennad MAX_FILE_SIZE spisaet er furmskrid HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Hanter bellgarget eo bet ar restr nemetken."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Mankout a ra ur c'havlec'h padennek."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Fazi en ur skrivañ ar restr war ar bladenn."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Harzet eo bet ar pellgargañ gant an astenn."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Fazi dianav en ur bellgargañ ar restr."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Fazi en ur zilec'hiañ ar restr pellgarget; gwelet [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "N'eus bet termenet meneger ebet !"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Menegerioù"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Dibar"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Gwasket"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalegezh"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Evezhiadenn"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Diverket eo bet an alc'hwez kentidik"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Diverket eo bet ar meneger %s."
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Evit doare eo kevatal an menegerioù %1$s ha %2$s hag unan anezho a c'hallfe "
+"bezañ dilamet."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Diazoù roadennoù"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fazi"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d linenn tizhet."
+msgstr[1] "%1$d linenn tizhet."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d linenn diverket."
+msgstr[1] "%1$d linenn diverket."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d linenn ensoc'het."
+msgstr[1] "%1$d linenn ensoc'het."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "N'eus ket bet gallet enrollañ an daolenn envez"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Taolennoù nevez"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "N'eus taolenn nevez ebet"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "N'eus tamm titour dre ar munud ebet evit al lusker stokañ-mañ."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Hegerz eo %s war ar servijer MySQL-mañ."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Diweredekaet eo bet %s war ar servijer MySQL-mañ."
+
+#: libraries/StorageEngine.class.php:362
+#, fuzzy, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "N'eo ket skoret al lusker stokañ gant ar servijer MySQL-mañ."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Diaz roadennoù direizh"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Anv taolenn direizh"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fazi en ur adenvel %1$s e %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Anv an daolenn %s zo %s bremañ"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "N'eus ket bet gallet enrollañ dibaboù etrefas an taolennoù"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "N'eus ket eus un hent reizh evit skeudennoù an tem %s !"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "N'haller ket rakwelet."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "tapit-eñ"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "N'eo ket bet kavet an tem dre ziouer %s !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "N'eo ket bet kavet an tem %s !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "N'eo ket bet kavet an hent evit an tem %s !"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tem"
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
-msgstr ""
+msgstr "Dibosupl kevreañ : arventennoù direizh."
#: libraries/auth/config.auth.lib.php:91
#: libraries/auth/cookie.auth.lib.php:200 libraries/auth/http.auth.lib.php:64
#, php-format
msgid "Welcome to %s"
-msgstr ""
+msgstr "Degemer mat e %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
+"Evit doare n'hoc'h eus krouet a restr kefluniañ. Gallout a rit implijout ar "
+"%1$sskript kefluniañ%2$s da sevel unan."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1698,42 +1919,48 @@ msgid ""
"configuration and make sure that they correspond to the information given by "
"the administrator of the MySQL server."
msgstr ""
+"Klasket en deus phpMyAdmin kevreañ ouzh ar servijer MySQL ha nac'het eo bet "
+"ar gevreadenn gantañ. Gwiriit mat talvoudoù an ostiz, an anv implijer hag ar "
+"ger-tremen en ho kefluniadur ha bezit sur e klotont gant an titouroù "
+"pourchaset gant merour ar servijer MySQL."
#: libraries/auth/cookie.auth.lib.php:225
msgid "Log in"
-msgstr ""
+msgstr "Kevreañ"
#: libraries/auth/cookie.auth.lib.php:227
#: libraries/auth/cookie.auth.lib.php:229
#: libraries/navigation_header.inc.php:95
#: libraries/navigation_header.inc.php:99
msgid "phpMyAdmin documentation"
-msgstr ""
+msgstr "Teuliadur phpMyAdmin"
#: libraries/auth/cookie.auth.lib.php:239
#: libraries/auth/cookie.auth.lib.php:240
msgid "You can enter hostname/IP address and port separated by space."
msgstr ""
+"Gallout a rit merkañ anv ar servijer pe e chomlec'h IP, gant ar porzh "
+"dispartiet dre un esaouenn."
#: libraries/auth/cookie.auth.lib.php:239
msgid "Server:"
-msgstr ""
+msgstr "Servijer : "
#: libraries/auth/cookie.auth.lib.php:244
msgid "Username:"
-msgstr ""
+msgstr "Anv implijer : "
#: libraries/auth/cookie.auth.lib.php:248
msgid "Password:"
-msgstr ""
+msgstr "Ger-tremen : "
#: libraries/auth/cookie.auth.lib.php:255
msgid "Server Choice"
-msgstr ""
+msgstr "Dibab ar servijer"
#: libraries/auth/cookie.auth.lib.php:301 libraries/header.inc.php:86
msgid "Cookies must be enabled past this point."
-msgstr ""
+msgstr "Evit gallout kenderc'hel e rankit gweredekaat an toupinoù."
#: libraries/auth/cookie.auth.lib.php:639
#: libraries/auth/signon.auth.lib.php:234
@@ -1787,14 +2014,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr ""
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1847,11 +2066,6 @@ msgstr ""
msgid "Data"
msgstr ""
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2128,8 +2342,76 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2760,12 +3042,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4233,78 +4509,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4368,23 +4572,6 @@ msgstr ""
msgid "Add an event"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4452,9 +4639,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4501,11 +4688,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4562,6 +4744,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4700,8 +4899,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5391,8 +5590,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5673,42 +5872,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5726,6 +5889,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5785,40 +5982,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5841,40 +6004,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5885,27 +6014,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6144,18 +6252,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6525,57 +6621,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6631,6 +6676,57 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6638,48 +6734,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6784,38 +6838,6 @@ msgstr ""
msgid "+ Add a value"
msgstr ""
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7764,8 +7786,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/bs.po b/po/bs.po
index e5119b3224..92c90b6bd3 100644
--- a/po/bs.po
+++ b/po/bs.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:12+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: bosnian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -119,7 +119,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza %s je odbačena."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze:"
@@ -129,9 +129,9 @@ msgstr "Komentar baze:"
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komentari tabele"
msgid "Column"
msgstr "Imena kolona"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Imena kolona"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,84 +261,84 @@ msgstr "ništa"
msgid "The database name is empty!"
msgstr "Ima tabele je prazno!"
-#: db_operations.php:271
+#: db_operations.php:272
#, fuzzy, php-format
msgid "Database %s has been renamed to %s"
msgstr "Tabeli %s promjenjeno ime u %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, fuzzy, php-format
msgid "Database %s has been copied to %s"
msgstr "Tabela %s je kopirana u %s."
-#: db_operations.php:403
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Promjeni ime tabele u "
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Promjeni ime tabele u "
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza %s je odbačena."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Baza ne postoji"
-#: db_operations.php:486
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Baza ne postoji"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i podatci"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podaci"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj AUTO_INCREMENT vrijednost"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Pređi na kopiranu tabelu"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,7 +347,7 @@ msgstr "Pređi na kopiranu tabelu"
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -360,7 +359,7 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -513,102 +512,102 @@ msgstr "SQL upit na bazi %s:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit je uspešno izvršen"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL kaže: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procesi"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tabele nisu pronađene u bazi."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabela %s je odbačena"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabela %s je odbačena"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Verzija servera"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -745,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -814,8 +813,8 @@ msgstr "Za štampu"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -893,9 +892,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -993,8 +992,8 @@ msgstr "Sadržaj baze je sačuvan u fajl %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1169,11 +1168,11 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1794,6 +1793,212 @@ msgstr "se koristi"
msgid "Second"
msgstr "u sekundi"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ključ nije definisan!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ključevi"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveni"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentari"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je obrisan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Ključ %s je obrisan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Greška"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tabela"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabeli %s promjenjeno ime u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1807,8 +2012,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1912,14 +2117,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Greška"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1972,11 +2169,6 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podaci"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ključevi"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2258,8 +2450,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i podatci"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kompletan INSERT (sa imenima polja)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Prošireni INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2930,12 +3199,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4463,87 +4726,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i podatci"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kompletan INSERT (sa imenima polja)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Prošireni INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4609,23 +4791,6 @@ msgstr ""
msgid "Add an event"
msgstr "Dodaj novog korisnika"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4698,9 +4863,9 @@ msgstr "Dužina/Vrijednost*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4759,12 +4924,6 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentari"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4825,6 +4984,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4986,8 +5162,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5717,8 +5893,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6027,42 +6203,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6080,6 +6220,41 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirao"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6141,41 +6316,6 @@ msgstr "Imena kolona"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6198,40 +6338,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ključ nije definisan!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveni"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je obrisan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Ključ %s je obrisan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6244,27 +6350,6 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6513,19 +6598,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tabela"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije u redu"
@@ -6918,6 +6990,63 @@ msgstr ""
msgid "Target database"
msgstr "Pretraživanje baze"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Imena kolona"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Obilježi SQL-upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit izvan prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Prikaži ponovo ovaj upit"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vidi samo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direkcija za slanje web servera "
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6980,63 +7109,6 @@ msgstr "Neispravan identifikator"
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Imena kolona"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Obilježi SQL-upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit izvan prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Prikaži ponovo ovaj upit"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vidi samo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direkcija za slanje web servera "
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7046,48 +7118,6 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabeli %s promjenjeno ime u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7216,38 +7246,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Dodaj novog korisnika"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8322,8 +8320,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
diff --git a/po/ca.po b/po/ca.po
index 7a1c3a253a..2b373daffd 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-02-23 09:57+0200\n"
"Last-Translator: Xavier Navarro \n"
"Language-Team: catalan \n"
+"Language: ca\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ca\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "S'ha creat la base de dades %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentaris de la base de dades: "
@@ -132,9 +132,9 @@ msgstr "Comentaris de la base de dades: "
msgid "Table comments"
msgstr "Comentaris de la taula"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentaris de la taula"
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Columna"
msgid "Type"
msgstr "Tipus"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Enllaços a"
msgid "Comments"
msgstr "Comentaris"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Comentaris"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Desmarca tot"
msgid "The database name is empty!"
msgstr "El nom de la base de dades és buit!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Base de dades %s reanomenada a %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "La base de dades %s s'ha copiat a %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Reanomena base de dades a"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Ordre"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Elimina la base de dades"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de dades %s s'ha eliminat."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Esborra la base de dades (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Còpia base de dades a"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Només l'estructura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estructura i dades"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Només dades"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Inclou CREATE DATABASE abans de copiar"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Afegeix %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Afegeix valor AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Afegeix restriccions"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Canvia a la base de dades copiada"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Canvia a la base de dades copiada"
msgid "Collation"
msgstr "Ordenació"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"S'ha desactivat l' emmagatzemament de la configuració de phpMyAdmin. Per "
"veure el motiu, clica %saqui%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edita o exporta l'esquema relacional"
@@ -498,110 +497,110 @@ msgstr "Consulta SQL a la base de dades %s:"
msgid "Submit Query"
msgstr "Executa consulta"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "La vostra comanda SQL ha estat executada amb èxit"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Permet executar rutines enmagatzemades."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha retornat un conjunt buit (p.e. cap fila)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Les següents consultes s'han executat:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL diu: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Error a la petició de procés"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Base de dades sense taules"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Predeterminats d'exportació"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Index de servidor invàlid: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "S'ha esborrat la columna %s"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "S'ha creat la taula %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Crea una relació"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Mode d'edició"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -731,8 +730,8 @@ msgstr "El seguiment no està actiu."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Aquesta vista té al menys aques nombre de files. Consulta %sdocumentation%s."
@@ -800,8 +799,8 @@ msgstr "Imprimeix vista"
msgid "Empty"
msgstr "Buida"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -880,9 +879,9 @@ msgstr "Actualitzat"
msgid "Status"
msgstr "Estat"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -976,11 +975,11 @@ msgstr "El bolcat s'ha desat amb el nom d'arxiu %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probablement has triat d'enviar un arxiu massa gran. Consulta la %"
-"sdocumentació%s per trobar formes de modificar aquest límit."
+"Probablement has triat d'enviar un arxiu massa gran. Consulta la "
+"%sdocumentació%s per trobar formes de modificar aquest límit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1167,11 +1166,11 @@ msgstr "Treu els usuaris triats"
msgid "Close"
msgstr "Tanca"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1724,6 +1723,225 @@ msgstr "Minut"
msgid "Second"
msgstr "Segon"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamany de lletra"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
+"formulari HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Només s'ha pujat parcialment l'arxiu."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "No es troba la carpeta temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Error en gravar l'arxiu al disc."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Pujada de l'arxiu aturada per l'extensió."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Error desconegut al pujar l'arxiu."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error movent l'arxiu pujat, consulta la [a@./Documentation."
+"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No s'ha definit l'índex!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexos"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Única"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Comprimit"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalitat"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentari"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "S'ha esborrat la clau principal"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "S'ha esborrat l'índex %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria "
+"esborrar."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de dades"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fila afectada."
+msgstr[1] "%1$d files afectades."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fila esborrada."
+msgstr[1] "%1$d files esborrades."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fila inserida."
+msgstr[1] "%1$d files inserides."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "No es pot desar la configuració"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Comptar les taules"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "No hi ha servidors configurats"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"No hi ha informació detallada de l'estat disponible per a aquest motor "
+"d'emmagatzematge."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s està disponible en aquest servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s s'ha desactivat en aquest servidor MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Base de dades incorrecte"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nom de taula incorrecte"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error reanomenant la taula %1$s a %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La taula %s ha canviat de nom a %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "El camí de les imatges del tema %s és incorrecte!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No hi ha vista prèvia disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "agafa"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema per defecte %s no trobat!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s no trobat!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "No s'ha trobat el camí de les imatges del tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "No puc connectar: paràmetres incorrectes."
@@ -1737,8 +1955,8 @@ msgstr "Benvingut a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raó més probable d'aixó és que no heu creat l'arxiu de configuració. "
"Podreu voler utilitzar %1$ssetup script%2$s per crear-ne un."
@@ -1848,14 +2066,6 @@ msgstr "Error de PBMS"
msgid "PBMS connection failed:"
msgstr "Error en la connexió PBMS:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Ha fallat l'obtenció d'ínformació BLOB per a PBMS:"
@@ -1908,11 +2118,6 @@ msgstr "Taules"
msgid "Data"
msgstr "Dades"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexos"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2195,9 +2400,79 @@ msgstr "No hi ha cap arxiu per pujar"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamany de lletra"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambdós"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Alt"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Obert"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Tancat"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estructura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dades"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "estructura i dades"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Ràpid - mostra només les opcions mínimes a configurar"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Complet - mostra totes les opcions a configurar"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "completa insercions"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "insercions ampliades"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ambdós anteriors"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "cap dels anteriors"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2854,12 +3129,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de dades"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcions de visualització de les bases de dades"
@@ -4516,80 +4785,6 @@ msgstr "Control de contrasenya de phpMyAdmin buida al usar pmadb"
msgid "Incorrect IP address: %s"
msgstr "Adreça IP incorrecta: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambdós"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Alt"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Obert"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Tancat"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estructura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dades"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "estructura i dades"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Ràpid - mostra només les opcions mínimes a configurar"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Complet - mostra totes les opcions a configurar"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Complet - igual que el anterior, però sense l'opció ràpid/complet"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "completa insercions"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "insercions ampliades"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ambdós anteriors"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "cap dels anteriors"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4660,25 +4855,6 @@ msgstr ""
msgid "Add an event"
msgstr "Afegir un nou servidor"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"La connexió de l'usuari de control ha fallat, tal com està definida ara a la "
-"configuració."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "El servidor no respon"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalls..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4753,9 +4929,9 @@ msgstr "Longitud/Valors*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4814,11 +4990,6 @@ msgstr "Seguretat"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentari"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4885,6 +5056,25 @@ msgstr ""
"Pot ser aproximat. Veieu [a@./Documentation.html#faq3_11@Documentation]PCF -"
"FAQ- 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"La connexió de l'usuari de control ha fallat, tal com està definida ara a la "
+"configuració."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "El servidor no respon"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(o el sòcol del servidor local MySQL no està configurat correctament)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalls..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5026,12 +5216,12 @@ msgstr ", @TABLE@ serà el nom de la taula"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Aquest valor s'interpreta usant %1$sstrftime%2$s, pel que podeu usar les "
-"cadenes de formateig de temps. A més, es faran aquestes transformacions: %3"
-"$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
+"cadenes de formateig de temps. A més, es faran aquestes transformacions: "
+"%3$s. Altre text es deixarà sense variació. Consulteu les %4$sPFC -FAQ- %5$s "
"per a més detalls."
#: libraries/display_export.lib.php:275
@@ -5814,8 +6004,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Pots trobar la documentació i més informació sobre PBXT a la pàgina "
"principal de %sPrimeBase XT%s."
@@ -6122,47 +6312,6 @@ msgstr "Vistes"
msgid "Export contents"
msgstr "Exporta contingut"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El tamany d'arxiu pujat supera la directiva upload_max_filesize de php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El tamany d'arxiu pujat supera la directiva MAX_FILE_SIZE especificada al "
-"formulari HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Només s'ha pujat parcialment l'arxiu."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "No es troba la carpeta temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Error en gravar l'arxiu al disc."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Pujada de l'arxiu aturada per l'extensió."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Error desconegut al pujar l'arxiu."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error movent l'arxiu pujat, consulta la [a@./Documentation."
-"html#faq1_11@Documentation]PCF -FAQ- 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6182,6 +6331,42 @@ msgstr "Resultat SQL"
msgid "Generated by"
msgstr "Generat per"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç "
+"\"Opcions\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Vés a la base de dades"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "configuració"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Vés a la taula"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Vés a la vista"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6249,42 +6434,6 @@ msgstr "Nom de les columnes"
msgid "This plugin does not support compressed imports!"
msgstr "Aquesta extensió no suporta importacions comprimides!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Les següents estructures han estat creades o bé alterades. Aquí pots:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Veure el contingut d'una estructura fent clic sobre el seu nom"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Canviar qualsevol dels seus ajustaments fent clic al corresponents enllaç "
-"\"Opcions\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modificar la seva estructura, seguint l'enllaç \"Estructura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Vés a la base de dades"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "configuració"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Vés a la taula"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Vés a la vista"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6310,42 +6459,6 @@ msgstr ""
"El fitxer XML especificat era incorrecte o incomplet. Si us plau, arreglar-"
"lo i torna a intentar-ho."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No s'ha definit l'índex!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Única"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Comprimit"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalitat"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "S'ha esborrat la clau principal"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "S'ha esborrat l'índex %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Els indexos %1$s i %2$s semblen iguals i un d'ells possiblement es podria "
-"esborrar."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6356,27 +6469,6 @@ msgstr "Cap"
msgid "Convert to Kana"
msgstr "Converteix a Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fila afectada."
-msgstr[1] "%1$d files afectades."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fila esborrada."
-msgstr[1] "%1$d files esborrades."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fila inserida."
-msgstr[1] "%1$d files inserides."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6619,24 +6711,6 @@ msgstr "Recarrega el marc de navegació"
msgid "This format has no options"
msgstr "Aquest format no té opcions"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "No es pot desar la configuració"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Comptar les taules"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "No hi ha servidors configurats"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Incorrecte"
@@ -7022,6 +7096,61 @@ msgstr "Diferència"
msgid "Target database"
msgstr "Base de dades destinació"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executar consulta/es SQL al servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Executa consulta/s SQL a la Base de Dades %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Neteja"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columnes"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Desa aquesta consulta SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Reemplaça una consulta desada ja existent amb el mateix nom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "No sobreescriure aquesta consulta des de fora de la finestra"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Separador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostra aquesta consulta de nou "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Només mirar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Ubicació de l'arxiu de text"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directori de pujada d'arxius del servidor web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7085,61 +7214,6 @@ msgstr "Identificador Incorrecte"
msgid "Unknown Punctuation String"
msgstr "Signe de puntuació desconegut"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executar consulta/es SQL al servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Executa consulta/s SQL a la Base de Dades %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Neteja"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columnes"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Desa aquesta consulta SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixa accedir a cada usuari a aquesta consulta desada"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Reemplaça una consulta desada ja existent amb el mateix nom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "No sobreescriure aquesta consulta des de fora de la finestra"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Separador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostra aquesta consulta de nou "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Només mirar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Ubicació de l'arxiu de text"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directori de pujada d'arxius del servidor web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7147,52 +7221,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"No s'ha pogut iniciar el validador SQL. Si us plau, comproveu que teniu "
-"instal·lats els mòduls de PHP necessaris tal i com s'indica a la %"
-"sdocumentació%s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"No hi ha informació detallada de l'estat disponible per a aquest motor "
-"d'emmagatzematge."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s està disponible en aquest servidor MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s s'ha desactivat en aquest servidor MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Aquest servidor MySQL no suporta el motor d'emmagatzematge %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Base de dades incorrecte"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nom de taula incorrecte"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error reanomenant la taula %1$s a %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La taula %s ha canviat de nom a %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"instal·lats els mòduls de PHP necessaris tal i com s'indica a la "
+"%sdocumentació%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7314,38 +7344,6 @@ msgstr "Definició de PARTICIÓ"
msgid "+ Add a value"
msgstr "+ Afegir un nou valor"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "El camí de les imatges del tema %s és incorrecte!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No hi ha vista prèvia disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "agafa"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema per defecte %s no trobat!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s no trobat!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "No s'ha trobat el camí de les imatges del tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8393,8 +8391,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obté els permisos de l'usuari directament de les taules de "
"permisos de MySQL. El contingut d'aquestes taules pot ser diferent dels "
@@ -9959,8 +9957,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store%"
-"s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
+"Si s'utilitza la autenticació per cookies i el valor de %sLogin cookie store"
+"%s no és 0, %sLogin cookie validity%s ha d'establir-se a un valor menor o "
"igual a ell."
#: setup/lib/index.lib.php:266
@@ -9988,8 +9986,8 @@ msgstr ""
"Has triat el tipus d'autenticació [kbd]config[/kbd] i has inclós el nom "
"d'usuari i la contrasenya per connexions automàtiques, que es una opció no "
"recomanable per a servidors actius. Qualsevol que conegui la teva URL de "
-"phpMyAdmin pot accedir al teu panel directament. Estableix el %"
-"sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin pot accedir al teu panel directament. Estableix el "
+"%sauthentication type%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/cs.po b/po/cs.po
index 2f394636ee..f3d8ffb497 100644
--- a/po/cs.po
+++ b/po/cs.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-24 13:53+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-27 11:02+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: czech \n"
+"Language: cs\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cs\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,13 +48,13 @@ msgstr ""
msgid "Search"
msgstr "Vyhledávání"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -67,18 +67,18 @@ msgstr "Vyhledávání"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Proveď"
@@ -124,7 +124,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Byla vytvořena databáze %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentář k databázi: "
@@ -134,9 +134,9 @@ msgstr "Komentář k databázi: "
msgid "Table comments"
msgstr "Komentář k tabulce"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "Komentář k tabulce"
msgid "Column"
msgstr "Pole"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "Pole"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,13 +200,12 @@ msgstr "Odkazuje na"
msgid "Comments"
msgstr "Komentáře"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +216,17 @@ msgstr "Komentáře"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -264,79 +263,79 @@ msgstr "Odznačit vše"
msgid "The database name is empty!"
msgstr "Jméno databáze je prázdné!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Databáze %s byla přejmenována na %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Databáze %s byla zkopírována na %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Přejmenovat databázi na"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Příkaz"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Odstranit databázi"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databáze %s byla zrušena."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Odstranit databázi (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Zkopírovat databázi na"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Pouze strukturu"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu a data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Jen data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vytvořit databázi před kopírováním (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Přidat %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Přidat hodnotu AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Přidat integritní omezení"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Přepnout na zkopírovanou databázi"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -345,7 +344,7 @@ msgstr "Přepnout na zkopírovanou databázi"
msgid "Collation"
msgstr "Porovnávání"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -354,7 +353,7 @@ msgstr ""
"Některé z rozšířených funkcí phpMyAdmina nelze používat. %sZde%s zjistíte "
"proč."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Upravit nebo exportovat relační schéma"
@@ -501,14 +500,14 @@ msgstr "SQL dotaz na databázi %s:"
msgid "Submit Query"
msgstr "Provést dotaz"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Váš SQL-dotaz byl úspěšně vykonán"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -516,88 +515,91 @@ msgstr[0] "Posledním příkazem v proceduře byla ovlivněna %d řádka"
msgstr[1] "Posledním příkazem v proceduře byly ovlivněny %d řádky"
msgstr[2] "Posledním příkazem v proceduře bylo ovlivněno %d řádek"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Výsledek spuštění rutiny %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdný výsledek (tj. nulový počet řádků)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr "Následující dotaz selhal: „%s“"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL hlásí: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Chyba při zpracování požadavku"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
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"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Spustit rutinu"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Export rutiny %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Chybný typ rutiny: „%s“"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Bohužel se nepodařilo obnovit odstraněnou rutinu."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "Záložní dotaz byl:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Byla změněna rutina %1$s."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Byla vytvořena rutina %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "Při zpracování požadavku došlo k několika chybám:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Vytvořit rutinu"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Upravit rutinu"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
+"Používáte zastaralé rozšíření „mysql“, které neumí pracovat se složenými "
+"dotazy.Spouštění některých rutin může selhat! Pokud se chcete těmto "
+"problémům vyhnout, začněte, prosím, používat nové rozšíření „mysqli“."
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
@@ -720,8 +722,8 @@ msgstr "Sledování není zapnuté."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohled má alespoň tolik řádek. Podrobnosti naleznete v %sdokumentaci%s."
@@ -789,8 +791,8 @@ msgstr "Náhled pro tisk"
msgid "Empty"
msgstr "Vyprázdnit"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -863,9 +865,9 @@ msgstr "Aktualizováno"
msgid "Status"
msgstr "Stav"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -959,8 +961,8 @@ msgstr "Výpis byl uložen do souboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravděpodobně jste se pokusili nahrát příliš velký soubor. Přečtěte si "
"prosím %sdokumentaci%s, jak toto omezení obejít."
@@ -1139,11 +1141,11 @@ msgstr "Odstraňuji vybrané uživatele"
msgid "Close"
msgstr "Ukončit"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upravit"
@@ -1674,6 +1676,220 @@ msgstr "Minuty"
msgid "Second"
msgstr "Sekundy"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Velikost písma"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
+"zadána v HTML formuláři."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Soubor byl nahrán jen částečně."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Chybějící adresář pro dočasné soubory."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Chyba při zapisování souboru na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nahrávání souboru zastaveno rozšířením."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznámá chyba při nahrávání souboru."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Chyba při přejmenování nahraného soubory, viz [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Není definován žádný index!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexy"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikátní"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Zabaleno"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Mohutnost"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentář"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primární klíč byl odstraněn"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s byl odstraněn"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být "
+"odstraněn."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databáze"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Chyba"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Ovlivněn %1$d řádek."
+msgstr[1] "Ovlivněny %1$d řádky."
+msgstr[2] "Ovlivněno %1$d řádek."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Smazán %1$d řádek."
+msgstr[1] "Smazány %1$d řádky."
+msgstr[2] "Smazáno %1$d řádek."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Vložen %1$d řádek."
+msgstr[1] "Vloženy %1$d řádky."
+msgstr[2] "Vloženo %1$d řádek."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Nepodařilo se uložit nedávnou tabulku"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Nedávné tabulky"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Nebyly nalezeny žádné nedávné tabulky"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Nejsou dostupné podrobnější informace o tomto úložišti."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Úložiště %s je dostupné na tomto MySQL serveru."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Úložiště %s je vypnuté na tomto MySQL serveru."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tento MySQL server nepodporuje úložiště %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Chybná databáze"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Chybné jméno tabulky"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabulka %s byla přejmenována na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Náhled není k dispozici."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "zvolit"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Výchozí vzhled %s nebyl nalezen!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Vzhled %s nebyl nalezen!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Vzhled"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nepodařilo se připojit: chybné nastavení."
@@ -1687,8 +1903,8 @@ msgstr "Vítejte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravděpodobná příčina je, že nemáte vytvořený konfigurační soubor. Pro jeho "
"vytvoření by se vám mohl hodit %1$snastavovací skript%2$s."
@@ -1795,14 +2011,6 @@ msgstr "Chyba PDMS"
msgid "PBMS connection failed:"
msgstr "Připojení k PBMS selhalo:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Chyba"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Načtení informací o BLOBu z PBMS selhalo:"
@@ -1855,11 +2063,6 @@ msgstr "Tabulky"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexy"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2140,9 +2343,77 @@ msgstr "Nebyl zvolen žádný soubor pro nahrání"
msgid "Execute"
msgstr "Spustit"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Velikost písma"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Obojí"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nikde"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Nalevo"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Napravo"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otevřené"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Uzavřené"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktura a data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rychlý - zobrazí jen minimum možností nastavení"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Vlastní - zobrazí všechna možná nastavení"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "úplné inserty"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "rozšířené inserty"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oba výše uvedené"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ani jeden z výše uvedených"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2798,12 +3069,6 @@ msgstr "Nastaví adresáře pro import a export a volby komprese"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databáze"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Nastavení zobrazení databází"
@@ -4415,78 +4680,6 @@ msgstr "Prázdné heslo kontrolního uživatele phpMyAdmina při použití pmadb
msgid "Incorrect IP address: %s"
msgstr "Nesprávná IP adresa: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Obojí"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nikde"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Nalevo"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Napravo"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otevřené"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Uzavřené"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktura a data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rychlý - zobrazí jen minimum možností nastavení"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Vlastní - zobrazí všechna možná nastavení"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Vlastní - jako výše, ale bez volby rychlý/vlastní"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "úplné inserty"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "rozšířené inserty"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oba výše uvedené"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ani jeden z výše uvedených"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4547,28 +4740,9 @@ msgid "Turn it off"
msgstr "Vypnout"
#: libraries/db_events.inc.php:141
-#, fuzzy
#| msgid "Add a new Event"
msgid "Add an event"
-msgstr "Přidat novou událost"
-
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server neodpovídá"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti..."
+msgstr "Přidat událost"
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4637,9 +4811,9 @@ msgstr "Délka/Množina"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4686,11 +4860,6 @@ msgstr "Typ zabezpečení"
msgid "SQL data access"
msgstr "Přístup k SQL datům"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentář"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Parametry rutiny"
@@ -4713,37 +4882,37 @@ msgstr "Musíte zadat jméno rutiny"
#: libraries/db_routines.lib.php:984
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
-msgstr "„%s“ je chybný směr parametru."
+msgstr "„%s“ je chybný směr parametru."
#: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
+"Musíte zadat parametr „Délka/Hodnoty“ pro parametry typu ENUM, SET, VARCHAR "
+"nebo VARBINARY."
#: libraries/db_routines.lib.php:1020
msgid "You must provide a name and a type for each routine parameter."
-msgstr ""
+msgstr "Pro každý parametr musíte zadat jeho jméno a typ."
#: libraries/db_routines.lib.php:1077
msgid "You must provide a routine definition."
-msgstr ""
+msgstr "Musíte zadat definici rutiny."
#: libraries/db_routines.lib.php:1209
-#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no routines to display."
-msgstr "Nebyl zvolen žádný soubor pro nahrání"
+msgstr "Nebyly nalezeny žádné rutiny."
#: libraries/db_routines.lib.php:1253
msgid "Add routine"
msgstr "Přidat rutinu"
#: libraries/db_routines.lib.php:1256
-#, fuzzy
#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a new routine"
-msgstr "Nemáte dostatečná práva na provedení této akce!"
+msgstr "Nemáte dostatečná práva pro vytvoření rutiny"
#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121
msgid ""
@@ -4753,6 +4922,24 @@ msgstr ""
"Počet nemusí být přesný, viz [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Nepodařilo se připojit jako controluser, který je nadefinován v nastaveních."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server neodpovídá"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(nebo není správně nastaven lokální socket MySQL serveru)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4892,8 +5079,8 @@ msgstr ", @TABLE@ bude nahrazen jménem tabulky"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tato hodnota je interpretována pomocí %1$sstrftime%2$s, takže můžete použít "
"libovolné řetězce pro formátování data a času. Dále budou provedena "
@@ -5129,11 +5316,11 @@ msgstr "Geometrie"
#: libraries/display_tbl.lib.php:643
msgid "Well Known Text"
-msgstr ""
+msgstr "Text (WKT)"
#: libraries/display_tbl.lib.php:644
msgid "Well Known Binary"
-msgstr ""
+msgstr "Binární (WKB)"
#: libraries/display_tbl.lib.php:1288
msgid "Copy"
@@ -5190,27 +5377,26 @@ msgid "Link not found"
msgstr "Odkaz nenalezen"
#: libraries/display_triggers.inc.php:35
-#, fuzzy, php-format
+#, php-format
#| msgid "Export contents"
msgid "Export of trigger %s"
-msgstr "Exportovat obsah"
+msgstr "Exportovat spoušť %s"
#: libraries/display_triggers.inc.php:39
#, php-format
msgid "Export of trigger \"%s\""
-msgstr ""
+msgstr "Export spouště „%s“"
#: libraries/display_triggers.inc.php:47
-#, fuzzy, php-format
+#, php-format
#| msgid "No valid image path for theme %s found!"
msgid "No trigger with name %s found"
-msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
+msgstr "Spoušť se jménem %s nebyla nalezena"
#: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66
-#, fuzzy
#| msgid "There are no files to upload"
msgid "There are no triggers to display."
-msgstr "Nebyl zvolen žádný soubor pro nahrání"
+msgstr "Nebyly nalezeny žádné spouště."
#: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936
msgid "Time"
@@ -5221,10 +5407,9 @@ msgid "Event"
msgstr "Událost"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
#| msgid "Add a new server"
msgid "Add a trigger"
-msgstr "Přidat nový server"
+msgstr "Přidat spoušť"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -5665,8 +5850,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentace a další informace o PBXT můžete nalézt na %sstránkách PrimeBase "
"XT%s."
@@ -5969,57 +6154,15 @@ msgstr "Pohledy"
msgid "Export contents"
msgstr "Exportovat obsah"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Velikost nahraného souboru přesahuje nastavení upload_max_filesize v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Velikost nahraného souboru přesahuje hodnotu MAX_FILE_SIZE, která byla "
-"zadána v HTML formuláři."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Soubor byl nahrán jen částečně."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Chybějící adresář pro dočasné soubory."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Chyba při zapisování souboru na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nahrávání souboru zastaveno rozšířením."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznámá chyba při nahrávání souboru."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Chyba při přejmenování nahraného soubory, viz [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
msgstr "Otevřít nové okno phpMyAdmina"
#: libraries/gis_visualization.lib.php:129
-#, fuzzy
#| msgid "No data found for the chart."
msgid "No data found for GIS visualization."
-msgstr "Nebyla nalezena žádná data pro graf."
+msgstr "Nebyla nalezena žádná data zobrazení GIS."
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result"
@@ -6029,6 +6172,40 @@ msgstr "Výsledek SQL dotazu"
msgid "Generated by"
msgstr "Vygeneroval"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Upravit strukturu kliknutím na odkaz „Struktura“"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Přejít na databázi"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavení"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Přejít na tabulku"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Přejít na podhled"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6095,40 +6272,6 @@ msgstr "Názvy polí"
msgid "This plugin does not support compressed imports!"
msgstr "Tento plugin nepodporuje komprimované soubory!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Následující tabulky byly vytvořeny nebo změněny. Teď můžete:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobrazit obsah tabulky kliknutím na její jméno"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Změnit jakákoliv její nastavení kliknutím na odkaz „Nastavení“"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Upravit strukturu kliknutím na odkaz „Struktura“"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Přejít na databázi"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavení"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Přejít na tabulku"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Přejít na podhled"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6154,42 +6297,6 @@ msgstr ""
"Zadaný XML soubor je buď poškozený nebo nekompletní. Prosím opravte ho a "
"zkuste to znovu."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Není definován žádný index!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikátní"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Zabaleno"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Mohutnost"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primární klíč byl odstraněn"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s byl odstraněn"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indexy %1$s a %2$s vypadají stejné a jeden z nich by pravděpodobně mohl být "
-"odstraněn."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6200,30 +6307,6 @@ msgstr "Žádná"
msgid "Convert to Kana"
msgstr "Převést na Kanu"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Ovlivněn %1$d řádek."
-msgstr[1] "Ovlivněny %1$d řádky."
-msgstr[2] "Ovlivněno %1$d řádek."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Smazán %1$d řádek."
-msgstr[1] "Smazány %1$d řádky."
-msgstr[2] "Smazáno %1$d řádek."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Vložen %1$d řádek."
-msgstr[1] "Vloženy %1$d řádky."
-msgstr[2] "Vloženo %1$d řádek."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Z"
@@ -6462,18 +6545,6 @@ msgstr "Znovu nahrát navigační rám"
msgid "This format has no options"
msgstr "Tento formát nemá žádná nastavení"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Nepodařilo se uložit nedávnou tabulku"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Nedávné tabulky"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Nebyly nalezeny žádné nedávné tabulky"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "není v pořádku"
@@ -6858,6 +6929,61 @@ msgstr "Rozdíly"
msgid "Target database"
msgstr "Cílová databáze"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Spustit SQL dotaz(y) na serveru %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Spustit SQL dotaz(y) na databázi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vyčistit"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Pole"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Přidat tento SQL dotaz do oblíbených"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Přepsat existující oblíbený dotaz stejného jména"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nepřepisovat tento dotaz z hlavního okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Oddělovač"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Zobrazit zde tento dotaz znovu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Zobrazit"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "textový soubor"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "soubor z adresáře pro upload"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6920,61 +7046,6 @@ msgstr "Chybný identifikátor"
msgid "Unknown Punctuation String"
msgstr "Neznámé interpunkční znaménko"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Spustit SQL dotaz(y) na serveru %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Spustit SQL dotaz(y) na databázi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vyčistit"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Pole"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Přidat tento SQL dotaz do oblíbených"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Umožnit všem uživatelům používat tuto oblíbenou položku"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Přepsat existující oblíbený dotaz stejného jména"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nepřepisovat tento dotaz z hlavního okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Oddělovač"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Zobrazit zde tento dotaz znovu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Zobrazit"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "textový soubor"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "soubor z adresáře pro upload"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6984,48 +7055,6 @@ msgstr ""
"Kontrolování SQL nemohlo být spušteno. Prosím ověřte, jestli máte požadovaná "
"rozšíření PHP, jak je popsáno v %sdokumentaci%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Nejsou dostupné podrobnější informace o tomto úložišti."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Úložiště %s je dostupné na tomto MySQL serveru."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Úložiště %s je vypnuté na tomto MySQL serveru."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tento MySQL server nepodporuje úložiště %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Chybná databáze"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Chybné jméno tabulky"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Chyba při přejmenování tabulky %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabulka %s byla přejmenována na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Nepodařilo se uložit nastavení prohlížení tabulky"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabulka se zdá být prázdná!"
@@ -7067,8 +7096,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na %"
-"spopisy transformací%s"
+"Pro seznam dostupných parametrů transformací a jejich MIME typů klikněte na "
+"%spopisy transformací%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7119,8 +7148,8 @@ msgid ""
"No description is available for this transformation. Please ask the "
"author what %s does."
msgstr ""
-"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co %"
-"s dělá."
+"Pro tuto transformaci není dostupný žádný popis. Zeptejte se autora co "
+"%s dělá."
#: libraries/tbl_properties.inc.php:606 tbl_structure.php:678
#, php-format
@@ -7141,42 +7170,9 @@ msgid "PARTITION definition"
msgstr "Definice PARTITION"
#: libraries/tbl_properties.inc.php:776
-#, fuzzy
#| msgid "+ Add a new value"
msgid "+ Add a value"
-msgstr "+ Přidat novou hodnotu"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nebyla nalezena platná cesta k obrázkům pro vzhled %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Náhled není k dispozici."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "zvolit"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Výchozí vzhled %s nebyl nalezen!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Vzhled %s nebyl nalezen!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nebyla nalezena platná cesta k vzhledu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Vzhled"
+msgstr "+ Přidat hodnotu"
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
@@ -7768,8 +7764,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Více věcí můžete nastavit úpravou config.inc.php, např. použitím %"
-"sNastavovacího skriptu%s."
+"Více věcí můžete nastavit úpravou config.inc.php, např. použitím "
+"%sNastavovacího skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -8212,8 +8208,8 @@ msgstr "Odstranit databáze se stejnými jmény jako uživatelé."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získává oprávnění přímo z tabulek MySQL. Obsah těchto "
"tabulek se může lišit od oprávnění, která server právě používá, pokud byly "
@@ -8590,10 +8586,9 @@ msgid "All status variables"
msgstr "Všechny stavové proměnné"
#: server_status.php:413 server_status.php:439
-#, fuzzy
#| msgid "Refresh rate"
msgid "Refresh rate:"
-msgstr "Obnovovací frekvence"
+msgstr "Obnovovací frekvence:"
#: server_status.php:462
msgid "Containing the word:"
@@ -9467,7 +9462,7 @@ msgstr ""
#: server_variables.php:58
msgid "Setting variable failed"
-msgstr ""
+msgstr "Nastavení proměnné selhalo"
#: server_variables.php:77
msgid "Server variables and settings"
@@ -9733,8 +9728,8 @@ msgid ""
"If using cookie authentication and %sLogin cookie store%s is not 0, %sLogin "
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
-"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie%"
-"s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
+"Při použití přihlašování přes cookies a při %sUkládádání přihlašovaci cookie"
+"%s vyšší než 0 musí být %sPlatnost přihlašovací cookie%s nastavena na vyšší "
"hodnotu než je tato."
#: setup/lib/index.lib.php:266
@@ -9745,8 +9740,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Pokud to považujete za nutné, použijte další možnosti zabezpečení - %"
-"somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
+"Pokud to považujete za nutné, použijte další možnosti zabezpečení - "
+"%somezení počítačů%s a %sseznam důvěryhodných proxy%s. Nicméně zabezpečení "
"založené na IP adresách nemusí být spolehlivé, pokud je vaše IP adresa "
"dynamicky přidělována poskytovatelem spolu s mnoha dalšími uživateli."
@@ -9971,10 +9966,9 @@ msgid "View dump (schema) of table"
msgstr "Export tabulky"
#: tbl_gis_visualization.php:111
-#, fuzzy
#| msgid "Display servers selection"
msgid "Display GIS Visualization"
-msgstr "Zobrazit výběr serverů"
+msgstr "Zobrazit GIS data"
#: tbl_gis_visualization.php:157
msgid "Width"
@@ -9985,42 +9979,37 @@ msgid "Height"
msgstr "Výška"
#: tbl_gis_visualization.php:165
-#, fuzzy
#| msgid "Textarea columns"
msgid "Label column"
-msgstr "Sloupců v textové oblasti"
+msgstr "Název sloupce"
#: tbl_gis_visualization.php:167
-#, fuzzy
#| msgid "- none -"
msgid "-- None --"
-msgstr "- žádný -"
+msgstr "-- Žádný --"
#: tbl_gis_visualization.php:180
-#, fuzzy
#| msgid "Total count"
msgid "Spatial column"
-msgstr "Celkový počet"
+msgstr "Prostorový sloupec"
#: tbl_gis_visualization.php:201
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "Použít OpenStreetMap jako základní vrstvu"
#: tbl_gis_visualization.php:204
msgid "Redraw"
msgstr "Znovu vykreslit"
#: tbl_gis_visualization.php:206
-#, fuzzy
#| msgid "Save as file"
msgid "Save to file"
-msgstr "Uložit jako soubor"
+msgstr "Uložit do souboru"
#: tbl_gis_visualization.php:207
-#, fuzzy
#| msgid "Table name"
msgid "File name"
-msgstr "Jméno tabulky"
+msgstr "Jméno souboru"
#: tbl_indexes.php:66
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -10262,7 +10251,7 @@ msgstr "Seřadit podle:"
#: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611
msgid "Spatial"
-msgstr ""
+msgstr "Prostorový"
#: tbl_structure.php:165 tbl_structure.php:169
msgid "Browse distinct values"
@@ -10281,10 +10270,9 @@ msgid "Add unique index"
msgstr "Přidat unikátní index"
#: tbl_structure.php:176 tbl_structure.php:177
-#, fuzzy
#| msgid "Add index"
msgid "Add SPATIAL index"
-msgstr "Přidat index"
+msgstr "Přidat prostorový index"
#: tbl_structure.php:178 tbl_structure.php:179
msgid "Add FULLTEXT index"
diff --git a/po/cy.po b/po/cy.po
index c5a08a5f6a..d1d1af317d 100644
--- a/po/cy.po
+++ b/po/cy.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-05-19 21:21+0200\n"
"Last-Translator: \n"
"Language-Team: Welsh \n"
+"Language: cy\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: cy\n"
"Plural-Forms: nplurals=2; plural=(n==2) ? 1 : 0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -48,13 +48,13 @@ msgstr ""
msgid "Search"
msgstr "Chwilio"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -67,18 +67,18 @@ msgstr "Chwilio"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Ewch"
@@ -125,7 +125,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Sylw cronfa ddata:"
@@ -135,9 +135,9 @@ msgstr "Sylw cronfa ddata:"
msgid "Table comments"
msgstr "Sylwadau tabl"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Sylwadau tabl"
msgid "Column"
msgstr "Colofn"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Colofn"
msgid "Type"
msgstr "Math"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,13 +201,12 @@ msgstr "Cysylltu i"
msgid "Comments"
msgstr "Sylwadau"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +217,17 @@ msgstr "Sylwadau"
msgid "No"
msgstr "Na"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,79 +264,79 @@ msgstr "Dad-ddewis Pob"
msgid "The database name is empty!"
msgstr "Mae enw'r gronfa ddata'n wag!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Cafodd cronfa ddata %s ei hailenwi i %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Cafodd y gronfa ddata %s ei chopïo i %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ailenwch y gronfa ddata i"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Gorchymyn"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Tynnwch y gronfa ddata"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Cafodd cronfa ddata %s ei gollwng."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Dilëwch y gronfa ddata (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copïwch y gronfa ddata i"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Strwythur yn unig"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strwythur a data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Data yn unig"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Defnyddiwch CREATE DATABASE cyn copïo"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Ychwanegwch %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Ychwanegwch werth AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Ychwanegwch cyfyngiadau"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -346,7 +345,7 @@ msgstr "Newidiwch i'r gronfa ddata a gopïwyd"
msgid "Collation"
msgstr "Coladiad"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -355,7 +354,7 @@ msgstr ""
"Cafodd storfa ffurfwedd phpMyAdmin ei dadweithredu. Pwyswch %syma%s i "
"ddarganfod pam."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Golygu neu allforio sgema perthynol"
@@ -501,108 +500,108 @@ msgstr "Ymholiad SQL ar gronfa ddata %s:"
msgid "Submit Query"
msgstr "Cyflwyno Ymholiad"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Cafodd eich ymholiad SQL ei gweithredu'n llwyddiannus"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Dywedodd MySQL:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Prosesau"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Dim tablau wedi'u darganfod yn y gronfa ddata."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export as %s"
msgid "Export of routine %s"
msgstr "Allforio fel %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Indecs gweinydd annilys: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "View %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Cafodd golwg %s ei ollwng"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Cafodd y gronfa ddata %1$s ei chreu."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Crëwch berthynas"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit server"
msgid "Edit routine"
msgstr "Golygu gweinydd"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -733,8 +732,8 @@ msgstr "Nid yw tracio'n weithredol"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Mae gan yr olwg hon o leiaf y nifer hwn o resi. Gweler y %sdogfennaeth%s."
@@ -802,8 +801,8 @@ msgstr "Argraffu golwg"
msgid "Empty"
msgstr "Gwagu"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -878,9 +877,9 @@ msgstr "Diweddarwyd"
msgid "Status"
msgstr "Statws"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -974,8 +973,8 @@ msgstr "Dadlwythiad wedi'i gadw i'r ffeil %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yn ôl pob tebyg, mae'r ffeil i rhy fawr i'w lanlwytho. Gweler y %sdogfennaeth"
"%s am ffyrdd i weithio o gwmpas y cyfyngiad hwn."
@@ -1163,11 +1162,11 @@ msgstr ""
msgid "Close"
msgstr "Cau"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Golygu"
@@ -1752,6 +1751,217 @@ msgstr "Munud"
msgid "Second"
msgstr "Eiliad"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Maint ffont"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Ffolder dros dro ar goll."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Methu ag ysgrifennu i'r ddisg."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Gwall anhysbys wrth lanlwytho ffeil."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Dim indecs wedi'i ddiffinio!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indecsau"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unigryw"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Paciwyd"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Sylw"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Cafodd yr allwedd gynradd ei gollwng"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Cafodd indecs %s ei ollwng"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un "
+"ohonyn nhw."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Cronfeydd Data"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Gwall"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rhes wedi'i heffeithio."
+msgstr[1] "%1$d rhes wedi'u heffeithio."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rhes wedi'i dileu."
+msgstr[1] "%1$d rhes wedi'u dileu."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rhes wedi'i hychwanegu."
+msgstr[1] "%1$d rhes wedi'u hychwanegu."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Cyfrifwch y tablau"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Mae %s ar gael ar y gweinydd MySQL hwn."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Crofna ddata annilys"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Enw tabl annilys"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Cafodd y tabl %s ei ailenwi i %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Dim rhagolwg ar gael"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "cymerwch e"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Thema diofyn %s heb ei darganfod!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Heb ddarganfod thema ddiofyn %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Methu â chysylltu: gosodiadau annilys"
@@ -1765,11 +1975,11 @@ msgstr "Croeso i %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r %1"
-"$sgript gosod%2$s er mwyn ei chreu."
+"Rydych chi heb greu ffeil ffurfwedd yn ôl pob tebyg. Gallwch ddefnyddio'r "
+"%1$sgript gosod%2$s er mwyn ei chreu."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1879,14 +2089,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Coladiad cysylltiad MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Gwall"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1939,11 +2141,6 @@ msgstr "Tablau"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indecsau"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2230,9 +2427,83 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Maint ffont"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Cau"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strwythur a data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Autoextend increment"
+msgid "extended inserts"
+msgstr "Cynyddiad awtoestyn"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2895,12 +3166,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Cronfeydd Data"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4427,84 +4692,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Cau"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strwythur a data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Autoextend increment"
-msgid "extended inserts"
-msgstr "Cynyddiad awtoestyn"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4575,23 +4762,6 @@ msgstr ""
msgid "Add an event"
msgstr "Ychwanegwch weinydd newydd"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Dyw'r gweinydd ddim yn ymateb"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Manylion..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4666,9 +4836,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4723,11 +4893,6 @@ msgstr "Dychwelyd math"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Sylw"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4790,6 +4955,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Dyw'r gweinydd ddim yn ymateb"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Manylion..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4951,8 +5133,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5690,8 +5872,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6000,42 +6182,6 @@ msgstr "Dangos"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Ffolder dros dro ar goll."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Methu ag ysgrifennu i'r ddisg."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Cafodd y lanlwythiad ei atal gan estyniad."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Gwall anhysbys wrth lanlwytho ffeil."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6053,6 +6199,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6114,40 +6294,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6172,42 +6318,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Dim indecs wedi'i ddiffinio!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unigryw"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Paciwyd"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Cafodd yr allwedd gynradd ei gollwng"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Cafodd indecs %s ei ollwng"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Mae'n edrych fel bod yr indecsau %1$s a %2$s yn hafal. Gallwch chi dynnu un "
-"ohonyn nhw."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6218,27 +6328,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rhes wedi'i heffeithio."
-msgstr[1] "%1$d rhes wedi'u heffeithio."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rhes wedi'i dileu."
-msgstr[1] "%1$d rhes wedi'u dileu."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rhes wedi'i hychwanegu."
-msgstr[1] "%1$d rhes wedi'u hychwanegu."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6479,22 +6568,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Cyfrifwch y tablau"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nid oes unrhyw gweinyddion a ffurfweddwyd"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6876,57 +6949,6 @@ msgstr "Gwahaniaeth"
msgid "Target database"
msgstr "Cronfa ddata targed"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN CUT"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6982,6 +7004,57 @@ msgstr "Lleoliad y ffeil destun"
msgid "web server upload directory"
msgstr "cyfeiriadur lanlwytho y gweinydd gwe"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN CUT"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6989,49 +7062,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Does dim gwybodaeth statws fanwl ar gael ar gyfer y peiriant storio hwn."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Mae %s ar gael ar y gweinydd MySQL hwn."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Cafodd %s ei analluogi ar y gweinydd MySQL hwn."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Dyw'r gweinydd MySQL hwn ddim yn cynnal y peiriant storio %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Crofna ddata annilys"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Enw tabl annilys"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Gwall wrth ailenwi tabl %1$s i %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Cafodd y tabl %s ei ailenwi i %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7138,38 +7168,6 @@ msgstr "Diffiniad PARTITION"
msgid "+ Add a value"
msgstr "Ychwanegwch weinydd newydd"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Dim llwybr delwedd dilys ar gael ar gyfer thema %s."
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Dim rhagolwg ar gael"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "cymerwch e"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Thema diofyn %s heb ei darganfod!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Heb ddarganfod thema ddiofyn %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Heb ddarganfod llwybr thema ar gyfer thema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8161,8 +8159,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/da.po b/po/da.po
index d58c547262..6a50e1c920 100644
--- a/po/da.po
+++ b/po/da.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-03-07 01:17+0200\n"
"Last-Translator: \n"
"Language-Team: danish \n"
+"Language: da\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: da\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Søg"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Søg"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Udfør"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s er oprettet,"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Databasekommentar: "
@@ -131,9 +131,9 @@ msgstr "Databasekommentar: "
msgid "Table comments"
msgstr "Tabel kommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabel kommentarer"
msgid "Column"
msgstr "Kolonnenavn"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonnenavn"
msgid "Type"
msgstr "Datatype"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nej"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,79 +260,79 @@ msgstr "Fravælg alle"
msgid "The database name is empty!"
msgstr "Databasenavnet er tomt!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Database %s er blevet omdøbt til %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s er blevet kopieret til %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Omdøb database til"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Fjern database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s er slettet."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop databasen (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiér database til"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Kun strukturen"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur og data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Kun data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE før kopiering"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Tilføj %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Tilføj AUTO_INCREMENT værdi"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Tilføj begrænsninger"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Skift til den kopierede database"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -342,7 +341,7 @@ msgstr "Skift til den kopierede database"
msgid "Collation"
msgstr "Kollation (Collation)"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -350,7 +349,7 @@ msgid ""
msgstr ""
"phpMyAdmin er ikke sat op til at gemme tabel-relationer. Se her %shvorfor%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editer eller eksporter relations skema"
@@ -496,109 +495,109 @@ msgstr "SQL-forespørgsel til database %s:"
msgid "Submit Query"
msgstr "Send forespørgsel"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Din SQL-forespørgsel blev udført korrekt"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Tillader udførelse af gemte rutiner."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerede ingen data (fx ingen rækker)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL returnerede: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Felj i udførsel af forespørgsel"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Ingen tabeller fundet i databasen"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Standardindstillinger for eksport"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Server indekset %s er ugyldigt"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabel %s er slettet"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Database %1$s er oprettet,"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Opret relation"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Redigeringstilstand"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -728,8 +727,8 @@ msgstr "Sporing er ikke aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -796,8 +795,8 @@ msgstr "Vis (udskriftvenlig)"
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -870,9 +869,9 @@ msgstr "Opdateret"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,11 +965,11 @@ msgstr "Dump er blevet gemt i filen %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst %"
-"sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
+"Du har sandsynligvis forsøgt at uploade en for stor fil. Se venligst "
+"%sdokumentationen%s for måder hvorpå du kan arbejde dig uden om denne "
"begrænsning."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1154,11 +1153,11 @@ msgstr "Fjerner valge brugere"
msgid "Close"
msgstr "Luk"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ret"
@@ -1718,6 +1717,216 @@ msgstr "Minut"
msgid "Second"
msgstr "Sekund"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Skriftstørrelse"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
+"formularen."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Den uploadede fil blev kun delvist uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Mangler en midlertidig mappe."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Kunne ikke skrive fil til disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filupload stoppet af udvidelse."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ukendt fejl i filupload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fejl ved flytning af den uploadede fil, se FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Intet indeks defineret!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakket"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primærnøglen er slettet"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s er blevet slettet"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
+"sikkert fjernes"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaser"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fejl"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d række påvirket"
+msgstr[1] "%1$d rækker påvirket"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d række slettet"
+msgstr[1] "%1$d rækker slettet"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d række sat ind"
+msgstr[1] "%1$d rækker sat ind"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Kunne ikke gemme seneste tabel"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Seneste tabeller"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Der er ingen nye tabeller"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Der er ingen detaljerede statusinformationer tilgængelige for dette "
+"datalager."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s er tilgængelig på denne MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s er slået fra på denne MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denne MySQL-server understøtter ikke %s datalager."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ugyldig database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ugyldigt tabelnavn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabellen %s er nu omdøbt til %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Kunne ikke gemme brugerindstillinger for tabel"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen gyldig billedsti for tema %s fundet!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Intet billede til rådighed."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Vælg dette"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standardtema %s ikke fundet!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s ikke fundet!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Sti til tema ikke fundet for tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke forbinde: ugyldige indstillinger."
@@ -1731,8 +1940,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Sandsynlig årsag til dette er at du ikke har oprettet en konfigurationsfil. "
"Du kan bruge %1$sopsætningsscriptet%2$s til at oprette en."
@@ -1842,14 +2051,6 @@ msgstr "PBMS-fejl"
msgid "PBMS connection failed:"
msgstr "Det lykkedes ikke at oprette forbindelse til PBMS"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Fejl"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS hent BLOB info mislykkedes"
@@ -1902,11 +2103,6 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2188,9 +2384,81 @@ msgstr "Der er ikke nogen filer at uploade"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Skriftstørrelse"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Begge"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ingen steder"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Venstre"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Højre"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Åben"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Lukket"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktur og data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/"
+"brugerdefineret"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Komplette indsættelser"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Udvidede indsættelser"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "Begge de ovenfor anførte"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Ingen af de ovenfor anførte"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2856,12 +3124,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaser"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Indstillinger for visning af databaser"
@@ -4385,82 +4647,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Begge"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ingen steder"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Venstre"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Højre"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Åben"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Lukket"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktur og data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hurtig - vis kun de mest nødvendige konfigurationsmuligheder"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Brugerdefineret - vis alle valgmuligheder for konfigurering"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Brugerdefineret - som ovenfor, men uden valgmuligheder for hurtig/"
-"brugerdefineret"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Komplette indsættelser"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Udvidede indsættelser"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "Begge de ovenfor anførte"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Ingen af de ovenfor anførte"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4531,24 +4717,6 @@ msgstr ""
msgid "Add an event"
msgstr "Tilføj en ny bruger"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveren svarer ikke"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4621,9 +4789,9 @@ msgstr "Længde/Værdi*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4680,11 +4848,6 @@ msgstr "Sikkerhed"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4749,6 +4912,24 @@ msgid ""
"3.11[/a]"
msgstr "Kan være anslået. Se FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Forbindelse for kontrolbruger som defineret i din konfiguration slog fejl."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveren svarer ikke"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokale MySQL servers socket er ikke korrekt konfigureret)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4916,8 +5097,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne værdi fortolkes via %1$sstrftime%2$s, så du kan bruge tidsformatterede "
"strenge. Ydermere vil følgende transformationer foregå: %3$s. Anden tekst "
@@ -5683,8 +5864,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5998,44 +6179,6 @@ msgstr "Visning"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Den uploadede fil overstiger upload_max_filesize direktivet i php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Den uploadede fil overstiger MAX_FILE_SIZE direktivet som angivet i HTML-"
-"formularen."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Den uploadede fil blev kun delvist uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Mangler en midlertidig mappe."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Kunne ikke skrive fil til disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filupload stoppet af udvidelse."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ukendt fejl i filupload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fejl ved flytning af den uploadede fil, se FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6053,6 +6196,40 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genereret af"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6115,40 +6292,6 @@ msgstr "Kolonnenavne"
msgid "This plugin does not support compressed imports!"
msgstr "Denne plugin understøtter ikke komprimeret import!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6173,42 +6316,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Intet indeks defineret!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakket"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primærnøglen er slettet"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s er blevet slettet"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeks %1$s ser ud til at være identisk med indeks %2$s, så et af dem kan "
-"sikkert fjernes"
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6221,27 +6328,6 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d række påvirket"
-msgstr[1] "%1$d rækker påvirket"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d række slettet"
-msgstr[1] "%1$d rækker slettet"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d række sat ind"
-msgstr[1] "%1$d rækker sat ind"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6484,18 +6570,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Dette format har ingen indstillinger"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Kunne ikke gemme seneste tabel"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Seneste tabeller"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Der er ingen nye tabeller"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ikke OK"
@@ -6885,6 +6959,63 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kør SQL-forespørgsel/forespørgsler på server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kør SQL-forspørgsel(er) på database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolonnenavne"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lav bogmærke til denne SQL-forespørgsel"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Lad alle brugere bruge dette bogmærke"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Erstat eksisterende bogmærke af samme navn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Adskiller"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Vis forespørgslen her igen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kun oversigt"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tekstfilens placering"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webserver upload-mappe"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6949,63 +7080,6 @@ msgstr "Ugyldig identifikator"
msgid "Unknown Punctuation String"
msgstr "Ukendt tegnsætnings-streng"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kør SQL-forespørgsel/forespørgsler på server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kør SQL-forspørgsel(er) på database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolonnenavne"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lav bogmærke til denne SQL-forespørgsel"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Lad alle brugere bruge dette bogmærke"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Erstat eksisterende bogmærke af samme navn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Overskriv ikke denne forespørgsel fra udenfor vinduet"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Adskiller"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Vis forespørgslen her igen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kun oversigt"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tekstfilens placering"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webserver upload-mappe"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7015,50 +7089,6 @@ msgstr ""
"SQL-validatoren kunne ikke initialiseres. Check venligst at du har de "
"nødvendige PHP-udvidelser installeret som beskrevet i %sdokumentationen%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Der er ingen detaljerede statusinformationer tilgængelige for dette "
-"datalager."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s er tilgængelig på denne MySQL-server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s er slået fra på denne MySQL-server."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denne MySQL-server understøtter ikke %s datalager."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ugyldig database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ugyldigt tabelnavn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fejl ved omdøbning af tabel %1$s til %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabellen %s er nu omdøbt til %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Kunne ikke gemme brugerindstillinger for tabel"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel ser ud til at være tom"
@@ -7190,38 +7220,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Tilføj en ny bruger"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen gyldig billedsti for tema %s fundet!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Intet billede til rådighed."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Vælg dette"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standardtema %s ikke fundet!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s ikke fundet!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Sti til tema ikke fundet for tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8341,14 +8339,14 @@ msgstr "Drop databaser der har samme navne som brugernes."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Bemærk: phpMyAdmin henter brugernes privilegier direkte fra MySQLs "
"privilegietabeller. Indholdet af disse tabeller kan være forskelligt fra "
"privilegierne serveren i øjeblikket bruger hvis der er lavet manuelle "
-"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne%"
-"s før du fortsætter."
+"ændringer i den. Hvis dette er tilfældet, bør du %sgenindlæse privilegierne"
+"%s før du fortsætter."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/de.po b/po/de.po
index 892873872e..c6e5454c4e 100644
--- a/po/de.po
+++ b/po/de.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-04-23 04:28+0200\n"
"Last-Translator: Dominik Geyer \n"
"Language-Team: german \n"
+"Language: de\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Suche"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Suche"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Die Datenbank %1$s wurde erzeugt."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datenbankkommentar: "
@@ -132,9 +132,9 @@ msgstr "Datenbankkommentar: "
msgid "Table comments"
msgstr "Tabellen-Kommentar"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tabellen-Kommentar"
msgid "Column"
msgstr "Spalte"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Spalte"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Verweise"
msgid "Comments"
msgstr "Kommentare"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Kommentare"
msgid "No"
msgstr "Nein"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Auswahl entfernen"
msgid "The database name is empty!"
msgstr "Der Datenbankname ist leer!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Datenbank %s wurde umbenannt zu %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Datenbank %s wurde nach %s kopiert"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Datenbank umbenennen in"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Befehl"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Datenbank entfernen"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Datenbank %s wurde gelöscht."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Datenbank löschen (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Datenbank kopieren nach"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Nur Struktur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur und Daten"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Nur Daten"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vor dem Kopieren CREATE DATABASE ausführen."
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Füge %s hinzu"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT-Wert hinzufügen"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Constraints hinzufügen"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Zu kopierter Datenbank wechseln"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,16 +342,16 @@ msgstr "Zu kopierter Datenbank wechseln"
msgid "Collation"
msgstr "Kollation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier%"
-"s um herauszufinden warum."
+"Der phpMyAdmin Konfigurations-Speicher wurde deaktiviert. Klicken Sie %shier"
+"%s um herauszufinden warum."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Beziehungsschema bearbeiten oder exportieren"
@@ -498,110 +497,110 @@ msgstr "SQL-Befehl in der Datenbank %s:"
msgid "Submit Query"
msgstr "SQL-Befehl ausführen"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ihr SQL-Befehl wurde erfolgreich ausgeführt."
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Erlaubt das Ausführen von Routinen."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL lieferte ein leeres Resultat zurück (d.h. null Zeilen)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Die folgenden Abfragen wurden ausgeführt:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL meldet: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Fehler beim Bearbeiten der Anfrage"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Diese Datenbank enthält keine Tabellen."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Voreinstellung für Export"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Ungültige Server-Nummer: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Spalte %s wurde gelöscht"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Die Tabelle %1$s wurde erzeugt."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Erzeuge Verknüpfung"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Bearbeitungsmodus"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -731,11 +730,11 @@ msgstr "Tracking ist nicht aktiviert."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die %"
-"sDokumentation%s."
+"Dieser View hat mindestens diese Anzahl von Zeilen. Bitte lesen Sie die "
+"%sDokumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -801,8 +800,8 @@ msgstr "Druckansicht"
msgid "Empty"
msgstr "Leeren"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -881,9 +880,9 @@ msgstr "Aktualisiert"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -977,11 +976,11 @@ msgstr "Dump (Schema) wurde in Datei %s gespeichert."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die %"
-"sDokumentation%s zur Lösung diese Problems."
+"Möglicherweise wurde eine zu große Datei hochgeladen. Bitte lesen Sie die "
+"%sDokumentation%s zur Lösung diese Problems."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1169,11 +1168,11 @@ msgstr "Die ausgewählten Benutzer werden gelöscht"
msgid "Close"
msgstr "Schliesse"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Bearbeiten"
@@ -1727,6 +1726,223 @@ msgstr "Minute"
msgid "Second"
msgstr "Sekunde"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Schriftgröße"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Die hochgeladene Datei ist größer als der in der php.ini in "
+"upload_max_filesize angegebene Wert."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
+"Formulars angegebene Wert."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Die Datei wurde teilweise übertragen."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Datei konnte gespeichert werden."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Dateihochladen durch eine Erweiterung gestoppt."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unbekannter Fehler beim Dateihochladen."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Kein Index definiert!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indizes"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Gepackt"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalität"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Der Primärschlüssel wurde gelöscht."
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s wurde entfernt."
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte "
+"möglicherweise entfernt werden."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datenbanken"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fehler"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d Zeile betroffen."
+msgstr[1] "%1$d Zeilen betroffen."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d Zeile gelöscht."
+msgstr[1] "%1$d Zeilen gelöscht."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d Zeile eingefügt."
+msgstr[1] "%1$d Zeilen eingefügt."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Fehler beim Speichern der Konfiguration"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Zähle Tabellen"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Es sind keine Server konfiguriert"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s ist auf diesem MySQL-Server verfügbar."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Dieser MySQL-Server unterstützt %s nicht."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "ungültige Datenbank"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ungültiger Tabellenname"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabelle %s wurde umbenannt in %s."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Keine Vorschau verfügbar."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "auswählen"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1742,8 +1958,8 @@ msgstr "Willkommen bei %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Eine mögliche Ursache wäre, dass Sie noch keine Konfigurationsdatei angelegt "
"haben. Verwenden Sie in diesem Fall doch das %1$sSetup-Skript%2$s, um eine "
@@ -1857,14 +2073,6 @@ msgstr "PBMS Fehler"
msgid "PBMS connection failed:"
msgstr "PBMS Verbindung fehlgeschlagen:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Fehler"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS: Infos über BLOB nicht erhalten: "
@@ -1917,11 +2125,6 @@ msgstr "Tabellen"
msgid "Data"
msgstr "Daten"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indizes"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2206,9 +2409,79 @@ msgstr "Es sind keine Dateien zum Upload vorhanden"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Schriftgröße"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Beide"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Höhe"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Geöffnet"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Geschlossen"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "Struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "Daten"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "Struktur und Daten"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Vollständige 'INSERT's"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Erweiterte 'INSERT's"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "Beide der Obigen"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Keines der Obigen"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2864,12 +3137,6 @@ msgstr "Import/Export-Verzeichnis und Kompressionsoptionen setzen"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datenbanken"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Anzeigeoptionen für Datenbank"
@@ -4519,80 +4786,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Ungültige IP-Adresse: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Beide"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Höhe"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Geöffnet"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Geschlossen"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "Struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "Daten"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "Struktur und Daten"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Schnell – Zeige nur die minimalen Konfigurationsoptionen"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Angepasst – Zeige alle möglichen Konfigurationsoptionen"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Angepasst – Wie oben, aber ohne die Schnell-/Angepasst-Auswahl"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Vollständige 'INSERT's"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Erweiterte 'INSERT's"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "Beide der Obigen"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Keines der Obigen"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4663,27 +4856,6 @@ msgstr ""
msgid "Add an event"
msgstr "Neuen Server hinzufügen"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
-"ist fehlgeschlagen."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Der Server antwortet nicht."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
-"konfiguriert)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details ..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4758,9 +4930,9 @@ msgstr "Länge/Set"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4819,11 +4991,6 @@ msgstr "Sicherheit"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4889,6 +5056,27 @@ msgid ""
msgstr ""
"Es kann sich hierbei um Näherungswerte handeln. Bitte lesen Sie auch FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Verbindung für den controluser, wie er in Ihrer Konfiguration angegeben ist, "
+"ist fehlgeschlagen."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Der Server antwortet nicht."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(evtl. ist auch der Socket des lokalen MySQL-Servers socket nicht korrekt "
+"konfiguriert)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details ..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5030,8 +5218,8 @@ msgstr ", @TABLE@ wird durch den Tabellennamen ersetzt"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Dieser Wert wird mit %1$sstrftime%2$s geparst. Sie können also Platzhalter "
"für Datum und Uhrzeit verwenden. Darüber hinaus werden folgende Umformungen "
@@ -5814,8 +6002,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentation und weitere Informationen über PBXT sind auf der %sPrimeBase "
"XT-Website%s verfügbar."
@@ -6124,46 +6312,6 @@ msgstr "Ansichten"
msgid "Export contents"
msgstr "Export-Inhalte"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Die hochgeladene Datei ist größer als der in der php.ini in "
-"upload_max_filesize angegebene Wert."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Die hochgeladene Datei ist größer als der in MAX_FILE_SIZE des HTML "
-"Formulars angegebene Wert."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Die Datei wurde teilweise übertragen."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Kein gültiges Temporäres Verzeichnis für hochgeladene Dateien."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Datei konnte gespeichert werden."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Dateihochladen durch eine Erweiterung gestoppt."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unbekannter Fehler beim Dateihochladen."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fehler beim Verschieben der hochgeladenen Datei, siehe FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6183,6 +6331,43 @@ msgstr "SQL-Abfrageergebnis"
msgid "Generated by"
msgstr "Erstellt von"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
+"können Sie:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gehe zur Datenbank"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "Einstellungen"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gehe zur Tabelle"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gehe zum View"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6251,43 +6436,6 @@ msgstr "Spaltennamen"
msgid "This plugin does not support compressed imports!"
msgstr "Dieses Plugin unterstützt keine Kompression!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Die folgenden Strukturen wurden entweder erstellt oder verändert. Hier "
-"können Sie:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zum Anzeigen einer Struktur einfach auf den Namen klicken"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Zum Ändern der Einstellungen auf das entsprechende \"Optionen\" klicken"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Zum Ändern der Struktur auf das entsprechenden \"Struktur\" klicken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gehe zur Datenbank"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "Einstellungen"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gehe zur Tabelle"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gehe zum View"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6314,42 +6462,6 @@ msgstr ""
"Die angegebene XML-Datei war entweder fehlerhaft oder unvollständig. Bitte "
"korrigieren und erneut versuchen."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Kein Index definiert!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Gepackt"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalität"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Der Primärschlüssel wurde gelöscht."
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s wurde entfernt."
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Die Indizes %1$s und %2$s scheinen gleich zu sein und einer könnte "
-"möglicherweise entfernt werden."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6360,27 +6472,6 @@ msgstr "keine"
msgid "Convert to Kana"
msgstr "Nach Kana konvertieren"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d Zeile betroffen."
-msgstr[1] "%1$d Zeilen betroffen."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d Zeile gelöscht."
-msgstr[1] "%1$d Zeilen gelöscht."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d Zeile eingefügt."
-msgstr[1] "%1$d Zeilen eingefügt."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6623,24 +6714,6 @@ msgstr "Navigations-Frame aktualisieren"
msgid "This format has no options"
msgstr "Für dieses Format sind keine Optionen vorhanden"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Fehler beim Speichern der Konfiguration"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Zähle Tabellen"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Es sind keine Server konfiguriert"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "fehlerhaft"
@@ -7030,6 +7103,61 @@ msgstr "Unterschied"
msgid "Target database"
msgstr "Ziel-Datenbank"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL-Befehl(e) auf Server %s ausführen"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Werte löschen"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Spalten"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "SQL-Abfrage speichern"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Überschreibe gleichnamiges Bookmark"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Begrenzer"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Diese Abfrage hier wieder anzeigen"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Nur zeigen"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Datei"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Upload-Verzeichnis auf dem Webserver"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7095,61 +7223,6 @@ msgstr "Ungültiger Bezeichner"
msgid "Unknown Punctuation String"
msgstr "Unbekannte Interpunktion"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL-Befehl(e) auf Server %s ausführen"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL-Befehl(e) in Datenbank %s ausführen"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Werte löschen"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Spalten"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "SQL-Abfrage speichern"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Diese gespeicherte SQL-Abfrage für jeden Benutzer verfügbar machen"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Überschreibe gleichnamiges Bookmark"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Abfrage vor Änderungen außerhalb des Fensters schützen"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Begrenzer"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Diese Abfrage hier wieder anzeigen"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Nur zeigen"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Datei"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Upload-Verzeichnis auf dem Webserver"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7160,48 +7233,6 @@ msgstr ""
"überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-"
"Erweiterungen installiert haben."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Für dieses Tabellenformat sind keine Statusinformationen verfügbar"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s ist auf diesem MySQL-Server verfügbar."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s wurde auf diesem MySQL-Server deaktiviert."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Dieser MySQL-Server unterstützt %s nicht."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "ungültige Datenbank"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ungültiger Tabellenname"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fehler beim umbenennen von Tabelle %1$s nach %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabelle %s wurde umbenannt in %s."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Die Tabelle scheint leer zu sein!"
@@ -7296,8 +7327,8 @@ msgid ""
"author what %s does."
msgstr ""
"Für diese Umwandlung ist keine Beschreibung verfügbar. Für weitere "
-"Informationen wenden Sie sich bitte an den Autoren der Funktion "%"
-"s"."
+"Informationen wenden Sie sich bitte an den Autoren der Funktion ""
+"%s"."
#: libraries/tbl_properties.inc.php:606 tbl_structure.php:678
#, php-format
@@ -7323,39 +7354,6 @@ msgstr "PARTITION Definition"
msgid "+ Add a value"
msgstr "+ Neuen Wert hinzufügen"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Keinen gültiges Pfad für Grafiken des Oberflächendesigns \"%s\" gefunden!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Keine Vorschau verfügbar."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "auswählen"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standard-Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Pfad für das Oberflächendesign \"%s\" nicht gefunden!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8419,8 +8417,8 @@ msgstr "Die gleichnamigen Datenbanken löschen."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"phpMyAdmin liest die Benutzerprofile direkt aus den entsprechenden MySQL-"
"Tabellen aus. Der Inhalt dieser Tabellen kann sich von den Benutzerprofilen, "
@@ -10034,8 +10032,8 @@ msgstr ""
"Sie haben die [kbd]config[/kbd] Authentifizierung gewählt und einen "
"Benutzernamen und Passwort für Auto-Login eingegeben, was für Server im "
"Internet nicht wünschenswert ist. Jeder, der Ihre phpMyAdmin-URL kennt oder "
-"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den %"
-"sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
+"errät, kann direkt auf Ihre phpMyAdmin-Oberfläche zugreifen. Setzen Sie den "
+"%sAuthentifizierungstyp%s auf [kbd]cookie[/kbd] oder [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/el.po b/po/el.po
index 2170bdc6cf..910018c349 100644
--- a/po/el.po
+++ b/po/el.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-23 10:24+0200\n"
"Last-Translator: Panagiotis Papazoglou \n"
"Language-Team: greek \n"
+"Language: el\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: el\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Αναζήτηση"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Αναζήτηση"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Εκτέλεση"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Δημιουργήθηκε η βάση δεδομένων %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Σχόλιο βάσης: "
@@ -132,9 +132,9 @@ msgstr "Σχόλιο βάσης: "
msgid "Table comments"
msgstr "Σχόλια Πίνακα"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Σχόλια Πίνακα"
msgid "Column"
msgstr "Στήλη"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Στήλη"
msgid "Type"
msgstr "Τύπος"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Σύνδεση με"
msgid "Comments"
msgstr "Σχόλια"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Σχόλια"
msgid "No"
msgstr "Όχι"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Αποεπιλογή όλων"
msgid "The database name is empty!"
msgstr "Το όνομα της βάσης δεδομένων είναι κενό!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Η βάση δεδομένων %s μετονομάστηκε σε %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Η βάση δεδομένων %s αντιγράφηκε στη %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Μετονομασία βάσης δεδομένων σε"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Εντολή"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Μετακίνηση βάσης δεδομένων σε"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Η βάση δεδομένων %s διεγράφη."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Διαγραφή της βάση δεδομένων (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Αντιγραφή βάσης δεδομένων σε"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Μόνο η δομή"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Δομή και δεδομένα"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Μόνο τα δεδομένα"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "ΔΗΜΙΟΥΡΓΙΑ ΒΑΣΗΣ ΔΕΔΟΜΕΝΩΝ πριν την αντιγραφή"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Προσθήκη %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Προσθήκη τιμής AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Προσθήκη περιορισμών"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομένων"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Αλλαγή στο αντίγραφο της βάσης δεδομέν
msgid "Collation"
msgstr "Σύνθεση"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Οι επιπρόσθετες λειτουργίες για εργασία με συσχετισμένους πίνακες έχουν "
"απενεργοποιηθεί. Για να μάθετε γιατί, πατήστε %sεδώ%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Επεξεργασία ή εξαγωγή σχεσιακού σχήματος"
@@ -498,14 +497,14 @@ msgstr "Εντολή SQL στη βάση δεδομένων %s:"
msgid "Submit Query"
msgstr "Υποβολή ερωτήματος"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Η εντολή SQL εκτελέσθηκε επιτυχώς"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -514,88 +513,88 @@ msgstr[0] ""
msgstr[1] ""
"%d εγγραφές επηρεάστηκαν από την τελευταία δήλωση μέσα στη διαδικασία"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Αποτελέσματα εκτέλεσης της ρουτίνας %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"Η MySQL επέστρεψε ένα άδειο σύνολο αποτελεσμάτων (π.χ. καμμία εγγραφή)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Το ερώτημα «%s» απέτυχε"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Η MySQL επέστρεψε το μήνυμα: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Σφάλμα στην προώθηση αιτημάτος"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No routine with name %s found in database %s"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Καμιά ρουτίνα με την ονομασία %s δεν βρέθηκε στη βάση δεδομένων %s"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Εκτέλεση ρουτίνας"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Εξαγωγή της ρουτίνας %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Μη έγκυρος τύπος ρουτίνας: «%s»"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Συγνώμη, αποτύχαμε να επαναφέρουμε τη διαγραμμένη ρουτίνα."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "Το εφεδρικό ερώτημα ήταν:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Η ρουτίνα %1$s έχει αλλαχτεί."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Η ρουτίνα %1$s έχει δημιουργηθεί."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
"Ένα ή περισσότερα σφάλματα έλαβαν χώρα κατά την προώθηση του αιτήματός "
"σας:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Δημιουργία ρουτίνας"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Επεξεργασία ρουτίνας"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -725,11 +724,11 @@ msgstr "Η παρακολούθηση δεν είναι ενεργοποιημέ
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s."
+"Αυτή η προβολή έχει τουλάχιστον αυτό τον αριθμό γραμμών. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -796,8 +795,8 @@ msgstr "Εμφάνιση για εκτύπωση"
msgid "Empty"
msgstr "Άδειασμα"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -870,9 +869,9 @@ msgstr "Ενημερώθηκε"
msgid "Status"
msgstr "Κατάσταση"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,11 +965,11 @@ msgstr "Το αρχείο εξόδου αποθηκεύτηκε ως %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην %"
-"sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
+"Πιθανόν προσπαθείτε να αποστείλετε πολύ μεγάλο αρχείο. Λεπτομέρειες στην "
+"%sτεκμηρίωση%s για τρόπους αντιμετώπισης αυτού του περιορισμού."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1150,11 +1149,11 @@ msgstr "Διαγραφή των επιλεγμένων χρηστών"
msgid "Close"
msgstr "Κλείσιμο"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Επεξεργασία"
@@ -1686,6 +1685,220 @@ msgstr "Λεπτό"
msgid "Second"
msgstr "Δευτερόλεπτο"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Μέγεθος γραμματοσειράς"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
+"στη φόρμα HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Χάθηκε ένας προσωρινός φάκελος."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation."
+"html#faq1_11@Documentation]ΣΑΕ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Δεν ορίστηκε ευρετήριο!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ευρετήρια"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Μοναδικό"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Συμπιεσμένο"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Μοναδικότητα"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Σχόλιο"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Το πρωτεύον κλειδί διεγράφη"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Το ευρετήριο %s διεγράφη"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να "
+"απομακρυνθεί."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Βάσεις Δεδομένων"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Λάθος"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Επηρεάστηκε %1$d γραμμή."
+msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Διαγράφτηκε %1$d γραμμή."
+msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Εισήχθηκε %1$d γραμμή."
+msgstr[1] "Εισήχθηκαν %1$d γραμμές."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Πρόσφατοι πίνακες"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Δεν υπάρχουν πρόσφατοι πίνακες"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή "
+"αποθήκευσης."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Μη έγκυρη βάση δεδομένων"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Μη έγκυρο όνομα πίνακα"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Προεπισκόπηση μη διαθέσιμη."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "πάρτε το"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Το θέμα %s δεν βρέθηκε!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Θέμα"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Αδύνατη η σύνδεση: άκυρες ρυθμίσεις."
@@ -1699,8 +1912,8 @@ msgstr "Καλωσήρθατε στο %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Πιθανή αιτία για αυτό είναι η μη δημιουργία αρχείου προσαρμογής. Ίσως θέλετε "
"να χρησιμοποιήσετε τον %1$sκώδικα εγκατάστασηςt%2$s για να δημιουργήσετε ένα."
@@ -1811,14 +2024,6 @@ msgstr "Σφάλμα PBMS"
msgid "PBMS connection failed:"
msgstr "Η σύνδεση PBMS απέτυχε"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Λάθος"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Η λήψη πληροφοριών BLOB από την PBMS απέτυχε:"
@@ -1871,11 +2076,6 @@ msgstr "Πίνακες"
msgid "Data"
msgstr "Δεδομένα"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ευρετήρια"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2159,9 +2359,78 @@ msgstr "Δεν υπάρχουν αρχεία προς αποστολή"
msgid "Execute"
msgstr "Εκτέλεση"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Μέγεθος γραμματοσειράς"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Και τα δύο"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Πουθενά"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Αριστερά"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Δεξιά"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Άνοιγμα"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Κλεισμένο"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "δομή"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "δεδομένα"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "δομή και δεδομένα"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "πλήρεις εντολές εισαγωγής (Insert)"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "αμφότερα τα παραπάνω"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "κανένα από τα παραπάνω"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2821,12 +3090,6 @@ msgstr "Ορισμός φακέλων εισαγωγής-εξαγωγής και
msgid "LaTeX"
msgstr "Έγγραφο LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Βάσεις Δεδομένων"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Επιλογές προβολής βάσεων δεδομένων"
@@ -4488,79 +4751,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Εσφαλμένη διεύθυνση IP: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Και τα δύο"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Πουθενά"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Αριστερά"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Δεξιά"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Άνοιγμα"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Κλεισμένο"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "δομή"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "δεδομένα"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "δομή και δεδομένα"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Γρήγορο - προβολή μονό των ελάχιστων επιλογών για ρύθμιση"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Προσαρμογή - προβολή όλων των πιθανών επιλογών για ρύθμιση"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Προσαρμογή - όπως παραπάνω αλλά χωρίς την επιλογή γρήγορου/προσαρμοσμένου"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "πλήρεις εντολές εισαγωγής (Insert)"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Εκτεταμένες εντολές εισαγωγής (Insert)"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "αμφότερα τα παραπάνω"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "κανένα από τα παραπάνω"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4626,23 +4816,6 @@ msgstr "Απενεργοποιήστε τον"
msgid "Add an event"
msgstr "Προσθήκη ενός νέου Συμβάντος"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Ο διακομιστής δεν αποκρίνεται"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Λεπτομέρειες..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4710,9 +4883,9 @@ msgstr "Μήκος/Τιμές*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4759,11 +4932,6 @@ msgstr "Τύπος ασφάλειας"
msgid "SQL data access"
msgstr "Πρόσβαση δεδομένων SQL"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Σχόλιο"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Παράμετροι ρουτίνας"
@@ -4826,6 +4994,23 @@ msgstr ""
"Ίσως είναι κατά προσέγγιση. Δείτε τις [a@./Documentation."
"html#faq3_11@Documentation]ΣΑΕ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Ανεπιτυχής σύνδεση του χρήστη ελέγχου όπως ορίστηκε στη ρύθμισή σας."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Ο διακομιστής δεν αποκρίνεται"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ή η τοπική υποδοχή του διακομιστή MySQL δεν έχει ρυθμιστεί σωστά)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Λεπτομέρειες..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4964,8 +5149,8 @@ msgstr ", το @TABLE@ θα γίνει το όνομα του πίνακα"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Αυτή η τιμή μετατρέπεται με χρήση της συνάρτησης %1$sstrftime%2$s, έτσι "
"μπορείτε να χρησιμοποιήσετε φράσεις μορφής χρόνου. Επιπρόσθετα, θα γίνουν "
@@ -5580,8 +5765,8 @@ msgid ""
"Documentation and further information about PBMS can be found on %sThe "
"PrimeBase Media Streaming home page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην %"
-"sΙστοσελίδα του PrimeBase Media Streaming%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBMS μπορεί να βρεθεί στην "
+"%sΙστοσελίδα του PrimeBase Media Streaming%s."
#: libraries/engines/pbms.lib.php:96 libraries/engines/pbxt.lib.php:127
msgid "Related Links"
@@ -5750,11 +5935,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην %"
-"sΙστοσελίδα του PrimeBase XT%s."
+"Τεκμηρίωση και περισσότερες πληροφορίες για το PBXT μπορούν να βρεθούν στην "
+"%sΙστοσελίδα του PrimeBase XT%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6060,48 +6245,6 @@ msgstr "Προβολές"
msgid "Export contents"
msgstr "Εξαγωγή περιεχομένων"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Το προς αποστολή αρχείο υπερβαίνει την οδηγία upload_max_filesize στο php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Το προς αποστολή αρχείο υπερβαίνει την οδηγία MAX_FILE_SIZE όπως ορίστηκε "
-"στη φόρμα HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Το απεσταλμένο αρχείο εστάλει μόνο μερικώς."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Χάθηκε ένας προσωρινός φάκελος."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Αποτυχία εγγραφής του αρχείου στο δίσκο."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Η αποστολή του αρχείου σταμάτησε λόγω επέκτασης."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Άγνωστο σφάλμα στην αποστολή αρχείου."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Σφάλμα μετακίνησης του αρχείου αποστολής. Δείτε τις [a@./Documentation."
-"html#faq1_11@Documentation]ΣΑΕ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6119,6 +6262,40 @@ msgstr "αποτέλεσμα SQL"
msgid "Generated by"
msgstr "Δημιουργήθηκε από:"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Μετάβαση στη βάση δεδομένων"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ρυθμίσεις"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Μετάβαση στον πίνακα"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Μετάβαση στην προβολή"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6185,40 +6362,6 @@ msgstr "Ονόματα στηλών"
msgid "This plugin does not support compressed imports!"
msgstr "Αυτό το πρόσθετο δεν υποστηρίζει συμπιεσμένες εισαγωγές!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Οι ακόλουθες δομές δημιουργήθηκαν ή αλλάχτηκαν. Εδώ μπορείτε να:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Δείτε τα περιεχόμενα δομής πατώντας στο όνομα"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Αλλάξτε τις ρυθμίσεις πατώντας τον αντίστοιχο σύνδεσμο «Επιλογές»"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Επεξεργαστεί τη δομή από τον σύνδεσμο «Δομή»"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Μετάβαση στη βάση δεδομένων"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ρυθμίσεις"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Μετάβαση στον πίνακα"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Μετάβαση στην προβολή"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Εισαγωγή ποσοστών ως κανονικά δεκαδικά (π.χ. 12.00% αντί .12)"
@@ -6243,42 +6386,6 @@ msgstr ""
"Το αρχείο XML που ορίστηκε ήταν σε λανθασμένη μορφή ή ανεπαρκές. Διορθώστε "
"το θέμα και δοκιμάστε ξανά."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Δεν ορίστηκε ευρετήριο!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Μοναδικό"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Συμπιεσμένο"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Μοναδικότητα"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Το πρωτεύον κλειδί διεγράφη"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Το ευρετήριο %s διεγράφη"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Τα ευρετήρια %1$s και %2$s φαίνεται να είναι ίσα και ένα από αυτά μπορεί να "
-"απομακρυνθεί."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6289,27 +6396,6 @@ msgstr "Καμία"
msgid "Convert to Kana"
msgstr "Μετατροπή σε Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Επηρεάστηκε %1$d γραμμή."
-msgstr[1] "Επηρεάστηκαν %1$d γραμμές."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Διαγράφτηκε %1$d γραμμή."
-msgstr[1] "Διαγράφτηκαν %1$d γραμμές."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Εισήχθηκε %1$d γραμμή."
-msgstr[1] "Εισήχθηκαν %1$d γραμμές."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Από"
@@ -6548,18 +6634,6 @@ msgstr "Επαναφόρτωση πλαισίου πλοήγησης"
msgid "This format has no options"
msgstr "Αυτή η μορφή δεν έχει επιλογές"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Αδύνατη η αποθήκευση πρόσφατου πίνακα"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Πρόσφατοι πίνακες"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Δεν υπάρχουν πρόσφατοι πίνακες"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ΛΑΘΟΣ"
@@ -6946,6 +7020,61 @@ msgstr "Διαφορά"
msgid "Target database"
msgstr "Βάση δεδομένων προορισμού"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Καθάρισμα"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Στήλες"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Διαχωριστικό"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Μόνο ανάγνωση"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Τοποθεσία του αρχείου κειμένου"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7009,61 +7138,6 @@ msgstr "Άγνωστο Αναγνωριστικό"
msgid "Unknown Punctuation String"
msgstr "Άγνωστο σημείο στίξης"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Εκτέλεση ερωτήματος/ερωτημάτων SQL στο διακομιστή «%s»"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Εκτέλεση εντολής/εντολών SQL στη βάση δεδομένων %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Καθάρισμα"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Στήλες"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Αποθήκευση αυτού του ερωτήματος SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Δικαίωμα πρόσβασης στο σελίδοδείκτη σε κάθε χρήστη"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Αντικατάσταση υπάρχοντος σελιδοδείκτη με το ίδιο όνομα"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Να μην αλλάξει το ερώτημα από εξωτερική πηγή"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Διαχωριστικό"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Επανεμφάνιση αυτού του ερώτηματος εδώ"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Μόνο ανάγνωση"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Τοποθεσία του αρχείου κειμένου"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Υποκατάλογος αποθήκευσης αρχείων διακομιστή"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7073,50 +7147,6 @@ msgstr ""
"Ο επικυρωτής SQL δεν μπόρεσε να ξεκινήσει. Ελέγξτε ότι έχετε εγκαταστήσει "
"της απαραίτητες επεκτάσεις της php όπως περιγράφεται στην %sτεκμηρίωση%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Δεν υπάρχουν λεπτομερείς πληροφορίες κατάστασης για αυτή τη μηχανή "
-"αποθήκευσης."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Η %s είναι διαθέσιμη σε αυτό το διακομιστή MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Η %s έχει απενεργοποιήθεί σε αυτό το διακομιστή MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Αύτος ο διακομιστής MySQL δεν υποστηρίζει τη μηχανή αποθήκευσης %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Μη έγκυρη βάση δεδομένων"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Μη έγκυρο όνομα πίνακα"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Σφάλμα μετονομασίας του πίνακα %1$s σε %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Ο Πίνακας %s μετονομάσθηκε σε %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Αδύνατη η αποθήκευση των ρυθμίσεων πίνακα για το περιβάλλον χρήστη"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Ο πίνακας φαίνεται να είναι άδειος!"
@@ -7237,38 +7267,6 @@ msgstr "Ορισμός ΚΑΤΑΤΜΗΣΗΣ (PARTITION)"
msgid "+ Add a value"
msgstr "+ Προσθήκη νέας τιμής"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Βρέθηκε μη έγκυρη διαδρομή εικόνας για το θέμα %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Προεπισκόπηση μη διαθέσιμη."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "πάρτε το"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Το προεπιλεγμένο θέμα %s δεν βρέθηκε!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Το θέμα %s δεν βρέθηκε!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Η διαδρομή θέματος δεν βρέθηκε για το θέμα %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Θέμα"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7587,8 +7585,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"Η αποθήκευση ρυθμίσεων του phpMyAdmin δεν έχει ρυθμιστεί πλήρως. Μερικά "
-"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε %"
-"sεδώ%s."
+"εκτεταμένα χαρακτηριστικά έχουν απενεργοποιηθεί. Για να δείτε γιατί πατήστε "
+"%sεδώ%s."
#: main.php:314
msgid ""
@@ -8331,8 +8329,8 @@ msgstr "Διαγραφή βάσεων δεδομένων που έχουν ίδ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Σημείωση: Το phpMyAdmin διαβάζει τα δικαιώματα των χρηστών κατευθείαν από "
"τους πίνακες δικαιωμάτων της MySQL. Το περιεχόμενο αυτών των πινάκων μπορεί "
@@ -9909,8 +9907,8 @@ msgid ""
"(currently %d)."
msgstr ""
"Αν η %sεγκυρότητα Σύνδεσης cookie%s είναι μεγαλύτερη από 1440 δευτερόλεπτα "
-"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime%"
-"s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
+"μπορεί να προκαλέσει τυχαία ακύρωση συνεδρίας αν το %ssession.gc_maxlifetime"
+"%s είναι μικρότερο από την τιμή της (τρέχουσα: %d)."
#: setup/lib/index.lib.php:262
#, php-format
diff --git a/po/en_GB.po b/po/en_GB.po
index 6f5a3a240c..32f2201d64 100644
--- a/po/en_GB.po
+++ b/po/en_GB.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-23 00:01+0200\n"
-"Last-Translator: Robert Readman \n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-26 13:27+0200\n"
+"Last-Translator: Marc Delisle \n"
"Language-Team: english-gb \n"
+"Language: en_GB\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: en_GB\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Search"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Search"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s has been created."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database comment: "
@@ -132,9 +132,9 @@ msgstr "Database comment: "
msgid "Table comments"
msgstr "Table comments"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Table comments"
msgid "Column"
msgstr "Column"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Column"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Links to"
msgid "Comments"
msgstr "Comments"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Comments"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Unselect All"
msgid "The database name is empty!"
msgstr "The database name is empty!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Database %s has been renamed to %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Command"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remove database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s has been dropped."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop the database (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copy database to"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Structure only"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structure and data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Data only"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE before copying"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Add %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Add AUTO_INCREMENT value"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Add constraints"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Switch to copied database"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edit or export relational schema"
@@ -498,99 +497,97 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d row affected by the last statement inside the procedure"
msgstr[1] "%d rows affected by the last statement inside the procedure"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Execution results of routine %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "The following queries have been executed:"
+msgstr "The following query has failed: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL said: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Error in processing request"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
-#| msgid "No routine with name %s found in database %s"
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
msgid "No routine with name %1$s found in database %2$s"
-msgstr "No routine with name %s found in database %s"
+msgstr "No routine with name %1$s found in database %2$s"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Execute routine"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Export of routine %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Invalid routine type: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Sorry, we failed to restore the dropped routine."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "The backed up query was:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Routine %1$s has been modified."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Routine %1$s has been created."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "One or more errors have occurred while processing your request:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Create routine"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Edit routine"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -719,11 +716,11 @@ msgstr "Tracking is not active."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -789,8 +786,8 @@ msgstr "Print view"
msgid "Empty"
msgstr "Empty"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -863,9 +860,9 @@ msgstr "Updated"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -958,11 +955,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1136,11 +1133,11 @@ msgstr "Removing Selected Users"
msgid "Close"
msgstr "Close"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edit"
@@ -1672,6 +1669,218 @@ msgstr "Minute"
msgid "Second"
msgstr "Second"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Font size"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "The uploaded file was only partially uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Missing a temporary folder."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Failed to write file to disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "File upload stopped by extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unknown error in file upload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexes"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Packed"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comment"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s has been dropped"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databases"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row affected."
+msgstr[1] "%1$d rows affected."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d row deleted."
+msgstr[1] "%1$d rows deleted."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d row inserted."
+msgstr[1] "%1$d rows inserted."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Could not save recent table"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Recent tables"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "There are no recent tables"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s has been disabled for this MySQL server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "This MySQL server does not support the %s storage engine."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Invalid database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Invalid table name"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Could not save table UI preferences"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Theme"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Cannot connect: invalid settings."
@@ -1685,11 +1894,11 @@ msgstr "Welcome to %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1792,14 +2001,6 @@ msgstr "PBMS error"
msgid "PBMS connection failed:"
msgstr "PBMS connection failed:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS get BLOB info failed:"
@@ -1852,11 +2053,6 @@ msgstr "Tables"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexes"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -1884,22 +2080,16 @@ msgid "Check Privileges"
msgstr "Check Privileges"
#: libraries/common.inc.php:587
-#, fuzzy
-#| msgid "Failed to to read configuration file"
msgid "Failed to read configuration file"
-msgstr "Failed to to read configuration file"
+msgstr "Failed to read configuration file"
#: libraries/common.inc.php:588
-#, fuzzy
-#| msgid ""
-#| "This usually means there is a syntax error in it, please check any errors "
-#| "shown bellow."
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
"This usually means there is a syntax error in it, please check any errors "
-"shown bellow."
+"shown below."
#: libraries/common.inc.php:595
#, php-format
@@ -2143,9 +2333,77 @@ msgstr "There are no files to upload"
msgid "Execute"
msgstr "Execute"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Both"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nowhere"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Left"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Right"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Open"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Closed"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "structure and data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Quick - display only the minimal options to configure"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Custom - display all possible options to configure"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Custom - like above, but without the quick/custom choice"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "complete inserts"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "both of the above"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "neither of the above"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2798,12 +3056,6 @@ msgstr "Set import and export directories and compression options"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databases"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Databases display options"
@@ -4415,78 +4667,6 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
msgid "Incorrect IP address: %s"
msgstr "Incorrect IP address: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Both"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nowhere"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Left"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Right"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Open"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Closed"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "structure and data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Quick - display only the minimal options to configure"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Custom - display all possible options to configure"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Custom - like above, but without the quick/custom choice"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "complete inserts"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "both of the above"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "neither of the above"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4552,23 +4732,6 @@ msgstr "Turn it off"
msgid "Add an event"
msgstr "Add a new Event"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "The server is not responding"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4636,9 +4799,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4685,11 +4848,6 @@ msgstr "Security type"
msgid "SQL data access"
msgstr "SQL data access"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comment"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Routine parameters"
@@ -4750,6 +4908,23 @@ msgstr ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "The server is not responding"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4888,12 +5063,12 @@ msgstr ", @TABLE@ will become the table name"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5657,11 +5832,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -5964,47 +6139,6 @@ msgstr "Views"
msgid "Export contents"
msgstr "Export contents"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"The uploaded file exceeds the upload_max_filesize directive in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "The uploaded file was only partially uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Missing a temporary folder."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Failed to write file to disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "File upload stopped by extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unknown error in file upload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6022,6 +6156,42 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Generated by"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"The following structures have either been created or altered. Here you can:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "View a structure`s contents by clicking on its name"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edit its structure by following the \"Structure\" link"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Go to database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "settings"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Go to table"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Go to view"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6088,42 +6258,6 @@ msgstr "Column names"
msgid "This plugin does not support compressed imports!"
msgstr "This plug-in does not support compressed imports!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"The following structures have either been created or altered. Here you can:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "View a structure`s contents by clicking on its name"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edit its structure by following the \"Structure\" link"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Go to database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "settings"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Go to table"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Go to view"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Import percentages as proper decimals (ex. 12.00% to .12)"
@@ -6148,42 +6282,6 @@ msgstr ""
"The XML file specified was either malformed or incomplete. Please correct "
"the issue and try again."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Packed"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s has been dropped"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6194,27 +6292,6 @@ msgstr "None"
msgid "Convert to Kana"
msgstr "Convert to Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row affected."
-msgstr[1] "%1$d rows affected."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d row deleted."
-msgstr[1] "%1$d rows deleted."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d row inserted."
-msgstr[1] "%1$d rows inserted."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "From"
@@ -6453,18 +6530,6 @@ msgstr "Reload navigation frame"
msgid "This format has no options"
msgstr "This format has no options"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Could not save recent table"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Recent tables"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "There are no recent tables"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -6846,6 +6911,61 @@ msgstr "Difference"
msgid "Target database"
msgstr "Target database"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Clear"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columns"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bookmark this SQL query"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Let every user access this bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Replace existing bookmark of same name"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimiter"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "View only"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6908,61 +7028,6 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Clear"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columns"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bookmark this SQL query"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Let every user access this bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Replace existing bookmark of same name"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimiter"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "View only"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6972,49 +7037,6 @@ msgstr ""
"The SQL validator could not be initialised. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s has been disabled for this MySQL server."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "This MySQL server does not support the %s storage engine."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Invalid database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Invalid table name"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Could not save table UI preferences"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Table seems to be empty!"
@@ -7135,38 +7157,6 @@ msgstr "PARTITION definition"
msgid "+ Add a value"
msgstr "+ Add a new value"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Theme"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8203,13 +8193,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/es.po b/po/es.po
index 8f2302cbd4..b888b82c24 100644
--- a/po/es.po
+++ b/po/es.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-22 22:33+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-24 23:09+0200\n"
"Last-Translator: Matías Bellone \n"
"Language-Team: spanish \n"
+"Language: es\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: es\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Buscar"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Buscar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Continuar"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "La base de datos %1$s ha sido creada."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentario de la base de datos: "
@@ -132,9 +132,9 @@ msgstr "Comentario de la base de datos: "
msgid "Table comments"
msgstr "Comentarios de la tabla"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentarios de la tabla"
msgid "Column"
msgstr "Columna"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Columna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Enlaces a"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Comentarios"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Deseleccionar todo"
msgid "The database name is empty!"
msgstr "¡El nombre de la base de datos está vacío!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "La base de datos %s ha sido renombrada a %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "La base de datos %s ha sido copiada a %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Renombrar la base de datos a"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Comando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Eliminar base de datos"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de datos %s ha sido eliminada."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Eliminar la base de datos (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar la base de datos a"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Únicamente la estructura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estructura y datos"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Solamente datos"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREAR BASE DE DATOS antes de copiar"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Añada %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Añadir el valor AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Añadir restricciones"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Seleccionar la base de datos copiada"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Seleccionar la base de datos copiada"
msgid "Collation"
msgstr "Cotejamiento"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"El almacenamiento de la configuración de phpMyAdmin ha sido desactivado. "
"Para saber por qué haz clic %saquí%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar o exportar esquema relacional"
@@ -500,100 +499,98 @@ msgstr "Consulta a la base de datos %s:"
msgid "Submit Query"
msgstr "Ejecutar la consulta"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Su consulta se ejecutó con éxito"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d fila afectada por la última sentencia del procedimiento"
msgstr[1] "%d filas afectadas por la última sentencia del procedimiento"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Resultados de la ejecución de la rutina %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
"MySQL ha devuelto un conjunto de valores vacío (es decir: cero columnas)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "Se ejecutaron las siguentes consultas:"
+msgstr "Falló la siguiente consulta: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL ha dicho: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Error al procesar la petición"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
-#| msgid "No routine with name %s found in database %s"
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
msgid "No routine with name %1$s found in database %2$s"
-msgstr "No se encontró rutina con nombre %s en la base de datos %s"
+msgstr "No se encontró rutina con nombre %1$s en la base de datos %2$s"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Ejecutar rutina"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Exportar la rutina %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Tipo de rutina inválido: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Pedimos disculpas por no haber podido recuperar la rutina eliminada."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "La consulta respaldada era:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Se modificó la rutina %1$s."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Se creó la rutina %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "Ocurrieron uno o más errores al procesar el pedido:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Crear rutina"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Editar rutina"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -725,11 +722,11 @@ msgstr "El seguimiento no está activo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista tiene al menos este número de filas. Por favor refiérase a la %"
-"sdocumentation%s."
+"Esta vista tiene al menos este número de filas. Por favor refiérase a la "
+"%sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -796,8 +793,8 @@ msgstr "Vista de impresión"
msgid "Empty"
msgstr "Vaciar"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -870,9 +867,9 @@ msgstr "Actualizado"
msgid "Status"
msgstr "Estado actual"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,8 +963,8 @@ msgstr "El volcado ha sido guardado al archivo %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Usted probablemente intentó cargar un archivo demasiado grande. Por favor, "
"refiérase a %sla documentation%s para hallar modos de superar esta "
@@ -1151,11 +1148,11 @@ msgstr "Eliminando los usuarios seleccionados"
msgid "Close"
msgstr "Cerrar"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1688,6 +1685,221 @@ msgstr "Minuto"
msgid "Second"
msgstr "Segundo"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamaño de fuente"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"El archivo que intentó subir excede la directiva upload_max_filesize en php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
+"en el formulario HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "El archivo que intentó subir no alcanzó el 100%."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Falta una carpeta temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "No fue posible grabar el archivo a disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "La subida del archivo fue detenida por extensión."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Error desconocido al subir el archivo."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Se detectó un error al mover el archivo subido, ver [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "¡No se ha definido ningún índice!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Empaquetado"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidad"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentario"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La clave primaria ha sido eliminada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "El índice %s ha sido eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar "
+"uno."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de datos"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fila afectada."
+msgstr[1] "%1$d filas afectadas."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fila eliminada."
+msgstr[1] "%1$d filas eliminadas."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fila insertada."
+msgstr[1] "%1$d filas insertadas."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "No se pudo guardar la tabla reciente"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tablas recientes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "No existen tablas recientes"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"No existe información detallada acerca de las condiciones en que se "
+"encuentra este motor de almacenamiento."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está disponible en este servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s ha sido deshabilitado para este motor de almacenamiento."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "La base de datos no es válida"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "El nombre de la tabla no es válido"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabla %s ahora se llama %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "No se pudieron guardar las preferencias de interfaz"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "¡No se halló la ruta de imágenes para el tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No existe una previsualización disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "tómelo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "¡No se halló el tema predeterminado %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "¡No se halló el tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "¡No se halló la ruta del tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "No se estableció la conexión: los parámetros están incorrectos."
@@ -1701,8 +1913,8 @@ msgstr "Bienvenido a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La razón más probable es que usted no haya creado un archivo de "
"configuración. Utilice el %1$sscript de configuración%2$s para crear uno."
@@ -1814,14 +2026,6 @@ msgstr "error PBMS"
msgid "PBMS connection failed:"
msgstr "Falló la conexión PBMS:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Fallo al obtener la información del BLOB PBMS:"
@@ -1874,11 +2078,6 @@ msgstr "Tablas"
msgid "Data"
msgstr "Datos"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -1906,16 +2105,10 @@ msgid "Check Privileges"
msgstr "Comprobar los privilegios"
#: libraries/common.inc.php:587
-#, fuzzy
-#| msgid "Failed to to read configuration file"
msgid "Failed to read configuration file"
msgstr "No se pudo leer el archivo de configuración"
#: libraries/common.inc.php:588
-#, fuzzy
-#| msgid ""
-#| "This usually means there is a syntax error in it, please check any errors "
-#| "shown bellow."
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
@@ -2169,9 +2362,82 @@ msgstr "No hay archivos para subir"
msgid "Execute"
msgstr "Ejecutar"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamaño de fuente"
+# Used for
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambos"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ninguno"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Izquierda"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Derecha"
+
+# Used for
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Desplegados"
+
+# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Ocultos"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estructura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "datos"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "estructura y datos"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "INSERTs completos"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "INSERTs extensos"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "todo lo anterior"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ninguno de los anteriores"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2838,12 +3104,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de datos"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opciones para visualizar las bases de datos"
@@ -4503,83 +4763,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "La dirección IP es incorrecta: %s"
-# Used for
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_NavigationBarIconic
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambos"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ninguno"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Izquierda"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Derecha"
-
-# Used for
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Desplegados"
-
-# http://www.phpmyadmin.net/documentation/Documentation.html#cfg_InitialSlidersState
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Ocultos"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estructura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "datos"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "estructura y datos"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rápido - mostrar solo el mínimo de opciones de configuración"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizado - mostrar todas las opciones de configuración posibles"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizado - como el anterior, pero sin elegir rápido/personalizado"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "INSERTs completos"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "INSERTs extensos"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "todo lo anterior"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ninguno de los anteriores"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4645,26 +4828,6 @@ msgstr "Desactivarlo"
msgid "Add an event"
msgstr "Añadir un nuevo Evento"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"La conexión para controluser, como está definida en su configuración, "
-"fracasó."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "El servidor no está respondiendo"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(o el socket del servidor MySQL local no está configurado correctamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalles..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4732,9 +4895,9 @@ msgstr "Longitud/Valores"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4781,11 +4944,6 @@ msgstr "Tipo de seguridad"
msgid "SQL data access"
msgstr "Acceso de datos SQL"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentario"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Parámetros de rutina"
@@ -4846,6 +5004,26 @@ msgstr ""
"Podría ser aproximado. Ver [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"La conexión para controluser, como está definida en su configuración, "
+"fracasó."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "El servidor no está respondiendo"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(o el socket del servidor MySQL local no está configurado correctamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalles..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4985,8 +5163,8 @@ msgstr ", @TABLE@ se convertirá en el nombre de la tabla"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor es interpretado usando %1$sstrftime%2$s por lo que se pueden usar "
"cadenas para formatear el tiempo. Además sucederán las siguientes "
@@ -5779,8 +5957,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Se puede encontrar documentación y más información sobre PBXT en la %spágina "
"inicial de PrimeBase XT%s."
@@ -6089,48 +6267,6 @@ msgstr "Vistas"
msgid "Export contents"
msgstr "Exportar contenidos"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"El archivo que intentó subir excede la directiva upload_max_filesize en php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"El archivo que intentó subir excede la directiva MAX_FILE_SIZE especificada "
-"en el formulario HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "El archivo que intentó subir no alcanzó el 100%."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Falta una carpeta temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "No fue posible grabar el archivo a disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "La subida del archivo fue detenida por extensión."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Error desconocido al subir el archivo."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Se detectó un error al mover el archivo subido, ver [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6148,6 +6284,44 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Generado por"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Ver los contenidos de una estructura pulsando en su nombre"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
+"correspondiente"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edite su estructura siguiendo el enlace \"Estructura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ir a la base de datos"
+
+# This needs a bug opened due to way of building string not translation-
+# friendly
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "configuración"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ir a la tabla"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ir a la vista"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6216,44 +6390,6 @@ msgstr "Nombre de las columnas"
msgid "This plugin does not support compressed imports!"
msgstr "¡Este plugin no tiene soporte para importaciones comprimidas!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Las siguientes estructureas fueron creadas o alteradas. Puedes:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Ver los contenidos de una estructura pulsando en su nombre"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Cambie cualquiera de sus opciones pulsando el enlace \"Opciones\" "
-"correspondiente"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edite su estructura siguiendo el enlace \"Estructura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ir a la base de datos"
-
-# This needs a bug opened due to way of building string not translation-
-# friendly
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "configuración"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ir a la tabla"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ir a la vista"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6282,42 +6418,6 @@ msgstr ""
"El archivo XML especificado estaba incompleto o mal formado. Por favor "
"corrija el problema e intente nuevamente."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "¡No se ha definido ningún índice!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Empaquetado"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidad"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La clave primaria ha sido eliminada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "El índice %s ha sido eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Los índices %1$s y %2$s parecen ser iguales y posiblemente se puede eliminar "
-"uno."
-
# male gender due to referring to encoding modes
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
@@ -6329,27 +6429,6 @@ msgstr "Ninguno"
msgid "Convert to Kana"
msgstr "Convertir a Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fila afectada."
-msgstr[1] "%1$d filas afectadas."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fila eliminada."
-msgstr[1] "%1$d filas eliminadas."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fila insertada."
-msgstr[1] "%1$d filas insertadas."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "De"
@@ -6588,18 +6667,6 @@ msgstr "Recargar el marco de navegación"
msgid "This format has no options"
msgstr "Este formato no tiene opciones"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "No se pudo guardar la tabla reciente"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tablas recientes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "No existen tablas recientes"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "no recibió el OK"
@@ -6984,6 +7051,61 @@ msgstr "Diferencia"
msgid "Target database"
msgstr "Base de datos objetivo"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Ejecute la o las consultas SQL en el servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpiar"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Columnas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Guardar esta consulta en favoritos"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permitir que todo usuario pueda acceder a este favorito"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Reemplazar el favorito existente que tenga el mismo nombre"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "No sobreescribir esta consulta desde fuera de la ventana"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta consulta otra vez "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Solamente ver"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localización del archivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directorio en el servidor web para subir los archivos"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7049,61 +7171,6 @@ msgstr "El identificador no es válido"
msgid "Unknown Punctuation String"
msgstr "Signo de puntuación desconocido"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Ejecute la o las consultas SQL en el servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Ejecutar la(s) consulta(s) SQL en la base de datos %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpiar"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Columnas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Guardar esta consulta en favoritos"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permitir que todo usuario pueda acceder a este favorito"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Reemplazar el favorito existente que tenga el mismo nombre"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "No sobreescribir esta consulta desde fuera de la ventana"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta consulta otra vez "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Solamente ver"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localización del archivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directorio en el servidor web para subir los archivos"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7113,51 +7180,6 @@ msgstr ""
"El validador de SQL no pudo inicializarse. Por favor revise si ha instalado "
"las extensiones php necesarias, como están descritas en la %sdocumentación%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"No existe información detallada acerca de las condiciones en que se "
-"encuentra este motor de almacenamiento."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está disponible en este servidor MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s ha sido deshabilitado para este motor de almacenamiento."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-"Este servidor MySQL no es compatible con el motor de almacenamiento %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "La base de datos no es válida"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "El nombre de la tabla no es válido"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error al cambiar el nombre de la tabla %1$s a %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabla %s ahora se llama %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "No se pudieron guardar las preferencias de interfaz"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "La tabla, ¡parece estar vacía!"
@@ -7281,38 +7303,6 @@ msgstr "definición de la PARTICIÓN"
msgid "+ Add a value"
msgstr "+ Agregar un nuevo valor"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "¡No se halló la ruta de imágenes para el tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No existe una previsualización disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "tómelo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "¡No se halló el tema predeterminado %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "¡No se halló el tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "¡No se halló la ruta del tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7631,8 +7621,8 @@ msgid ""
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
"El almacenamiento de configuración phpMyAdmin no está completamente "
-"configurado, algunas funcionalidades extendidas fueron deshabilitadas. %"
-"sPulsa aquí para averiguar por qué%s."
+"configurado, algunas funcionalidades extendidas fueron deshabilitadas. "
+"%sPulsa aquí para averiguar por qué%s."
#: main.php:314
msgid ""
@@ -8382,8 +8372,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin obtiene los privilegios de los usuarios 'directamente de "
"las tablas de privilegios MySQL'. El contenido de estas tablas puede diferir "
diff --git a/po/et.po b/po/et.po
index 9d040b93bc..e216391dc1 100644
--- a/po/et.po
+++ b/po/et.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: estonian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Otsi"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Otsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Mine"
@@ -119,7 +119,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Andmebaas %s kustutatud."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Andmebaasi kommentaar: "
@@ -129,9 +129,9 @@ msgstr "Andmebaasi kommentaar: "
msgid "Table comments"
msgstr "Tabeli kommentaarid"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabeli kommentaarid"
msgid "Column"
msgstr "Väljade nimed"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Väljade nimed"
msgid "Type"
msgstr "Tüüp"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Lingib "
msgid "Comments"
msgstr "Kommentaarid"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Kommentaarid"
msgid "No"
msgstr "Ei"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,82 +260,82 @@ msgstr "Puhasta kõik"
msgid "The database name is empty!"
msgstr "Andmebaasi nimi on tühi!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Andmebaas %s on ümber nimetatud %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Andmebaas %s on kopeeritud %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Nimeta andmebaas ümber"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Käsk"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Nimeta andmebaas ümber"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Andmebaas %s kustutatud."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Pole andmebaase"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopeeri andmebaas"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Ainult struktuur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktuur ja andmed"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Ainult andmed"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE enne kopeerimist"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Lisa %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Lisa AUTO_INCREMENT väärtus"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Lisa piirangud"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mine kopeeritud andmebaasile"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -345,7 +344,7 @@ msgstr "Mine kopeeritud andmebaasile"
msgid "Collation"
msgstr "Määrang"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +356,7 @@ msgstr ""
"Lisavõimalused töötamiseks lingitud tabelitega on deaktiveeritud. Et lugeda "
"miks see nii on, vajutage %ssiia%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -510,105 +509,105 @@ msgstr "SQL-päring andmebaasist %s:"
msgid "Submit Query"
msgstr "Lae päring"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Teie SQL päring täideti edukalt"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Lubab salvestatud rutiinide käivituse."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL tagastas tühja tulemuse (s.t. null rida)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL ütles: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Protsessid"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Andmebaasist ei leitud tabeleid."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Importige failid"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Vigane serveri indeks: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabel %s kustutatud"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabel %s kustutatud"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Suhte loomine (relation)"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -745,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -813,8 +812,8 @@ msgstr "Trükivaade"
msgid "Empty"
msgstr "Tühjenda"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -895,9 +894,9 @@ msgstr ""
msgid "Status"
msgstr "Staatus"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -996,8 +995,8 @@ msgstr "Väljavõte salvestati faili %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Te kindlasti proovisite laadida liiga suurt faili. Palun uuri "
"dokumentatsiooni %sdocumentation%s selle limiidi seadmiseks."
@@ -1189,11 +1188,11 @@ msgstr "Eemalda valitud kasutajad"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muuda"
@@ -1819,6 +1818,218 @@ msgstr "kasutusel"
msgid "Second"
msgstr "sekundis"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fondi suurus"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeksit pole defineeritud!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksid"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikaalne"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kasulikkus"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Kommentaarid"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primaarne võti kustutatud"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s kustutatud"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Andmebaasid"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Viga"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Ridu pole valitud"
+msgstr[1] "Ridu pole valitud"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Ridu pole valitud"
+msgstr[1] "Ridu pole valitud"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Pole tabeleid"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Kontrolli tabelit"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s on saadaval selles MySQL serveris."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s on keelatud selles MySQL serveris."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "See MySQL server ei toeta %s varundusmootorit."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Vigane andmebaas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Vigane tabeli nimi"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Viga tabeli nime %1$s muutimsel %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s on ümber nimetatud %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ei leia pildi kataloogi teemale %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Eelvaade pole saadaval."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "võta see"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Ei leia vaikimisi teemat %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Ei leia teemat %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Ei leia kataloogi teemale %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ei saa ühendust: vigased seaded."
@@ -1832,8 +2043,8 @@ msgstr "Tere tulemast %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Arvatav põhjus on te pole veel loonud seadete faili. Soovitavalt võid "
"kasutada %1$ssetup script%2$s et seadistada."
@@ -1940,14 +2151,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL ühenduse kollatsioon"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Viga"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2000,11 +2203,6 @@ msgstr "Tabelid"
msgid "Data"
msgstr "Andmed"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksid"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2293,9 +2491,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fondi suurus"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Sulgemata jutumärk/ülakoma"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktuur ja andmed"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Täispikk INSERT"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Laiendatud lisamised"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2969,12 +3244,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Andmebaasid"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4529,87 +4798,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Sulgemata jutumärk/ülakoma"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktuur ja andmed"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Täispikk INSERT"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Laiendatud lisamised"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4677,23 +4865,6 @@ msgstr ""
msgid "Add an event"
msgstr "Lisa uus kasutaja"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server ei vasta"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4766,9 +4937,9 @@ msgstr "Pikkus/Väärtused*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4828,12 +4999,6 @@ msgstr "Päringu tüüp"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Kommentaarid"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4895,6 +5060,23 @@ msgid ""
"3.11[/a]"
msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server ei vasta"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(või kohaliku MySQL serveri soketid ei ole korrektselt seadistatud)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5063,8 +5245,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Seda väärtust on tõlgendatud kasutades %1$sstrftime%2$s, sa võid kasutada "
"sama aja(time) formaati. Lisaks tulevad ka järgnevad muudatused: %3$s. "
@@ -5831,8 +6013,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6150,43 +6332,6 @@ msgstr "Vaade"
msgid "Export contents"
msgstr "Ekspordi tüüp"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Võib olla umbkaudne. Vaadake FAQ 3.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6204,6 +6349,42 @@ msgstr "SQL tulemus"
msgid "Generated by"
msgstr "Genereerija "
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Pole andmebaase"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Pole andmebaase"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6266,42 +6447,6 @@ msgstr "Väljade nimed"
msgid "This plugin does not support compressed imports!"
msgstr "See plugin ei toeta pakitud importe!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Pole andmebaase"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Pole andmebaase"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6326,40 +6471,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeksit pole defineeritud!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikaalne"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kasulikkus"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primaarne võti kustutatud"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s kustutatud"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6372,29 +6483,6 @@ msgstr "Pole"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Ridu pole valitud"
-msgstr[1] "Ridu pole valitud"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Ridu pole valitud"
-msgstr[1] "Ridu pole valitud"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6639,22 +6727,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Sellel formaadil pole seadeid"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Pole võimalik laadida vaikimisi seadete faili: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Pole tabeleid"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Kontrolli tabelit"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Ei ole korras"
@@ -7046,6 +7118,64 @@ msgstr ""
msgid "Target database"
msgstr "Otsi andmebaasist"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Käivita SQL käsk/käsud Masinas %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Päri SQL päring(uid) andmebaasist %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalender"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Väljade nimed"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lisa see SQL päring järjehoidjasse"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Kirjuta samanimeline järjehoidja üle"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Antud päringut mitte muuta väljaspool akent."
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Eraldaja"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Näita päringut siin uuesti "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vaata ainult"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "tekstifaili asukoht"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webiserveri üleslaadimiskataloogi"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7109,64 +7239,6 @@ msgstr "Vigane identifikaator"
msgid "Unknown Punctuation String"
msgstr "Tundmatu suunav tekst"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Käivita SQL käsk/käsud Masinas %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Päri SQL päring(uid) andmebaasist %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalender"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Väljade nimed"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lisa see SQL päring järjehoidjasse"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Anna kõikidele kasutajatele juurdepääs sellele järjehodjale"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Kirjuta samanimeline järjehoidja üle"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Antud päringut mitte muuta väljaspool akent."
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Eraldaja"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Näita päringut siin uuesti "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vaata ainult"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "tekstifaili asukoht"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webiserveri üleslaadimiskataloogi"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7176,48 +7248,6 @@ msgstr ""
"SQL-i valideerijat ei suudetud avada. Palun kontrollige, et te olete "
"installinud vastavad php moodulid nagu on kirjeldatud %sdokumentatsioonis%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Detailne seisuinformatsioon antud varundusmootori kohta puudub."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s on saadaval selles MySQL serveris."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s on keelatud selles MySQL serveris."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "See MySQL server ei toeta %s varundusmootorit."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Vigane andmebaas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Vigane tabeli nimi"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Viga tabeli nime %1$s muutimsel %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s on ümber nimetatud %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel tundub olevat tühi!"
@@ -7349,38 +7379,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Lisa uus kasutaja"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ei leia pildi kataloogi teemale %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Eelvaade pole saadaval."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "võta see"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Ei leia vaikimisi teemat %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Ei leia teemat %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Ei leia kataloogi teemale %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8489,8 +8487,8 @@ msgstr "Kustuta andmebaasid millel on samad nimed nagu kasutajatel."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Märkus: phpMyAdmin võtab kasutajate privileegid otse MySQL privileges "
"tabelist. Tabeli sisu võib erineda sellest, mida server hetkel kasutab, seda "
diff --git a/po/eu.po b/po/eu.po
index baa134b945..51f6955b57 100644
--- a/po/eu.po
+++ b/po/eu.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-21 14:53+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: basque \n"
+"Language: eu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: eu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Bilatu"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Bilatu"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Joan"
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s datu-basea ezabatua izan da."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datu-basearen iruzkina: "
@@ -130,9 +130,9 @@ msgstr "Datu-basearen iruzkina: "
msgid "Table comments"
msgstr "Taularen iruzkinak"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Taularen iruzkinak"
msgid "Column"
msgstr "Zutabe izenak"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Zutabe izenak"
msgid "Type"
msgstr "Mota"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Estekak honi:"
msgid "Comments"
msgstr "Iruzkinak"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Iruzkinak"
msgid "No"
msgstr "Ez"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,84 +262,84 @@ msgstr "Desautatu dena"
msgid "The database name is empty!"
msgstr "Taularen izena hutsik dago!"
-#: db_operations.php:271
+#: db_operations.php:272
#, fuzzy, php-format
msgid "Database %s has been renamed to %s"
msgstr "%s taula %s-(e)ra berrizendatua izan da"
-#: db_operations.php:275
+#: db_operations.php:276
#, fuzzy, php-format
msgid "Database %s has been copied to %s"
msgstr "%s taula hona kopiatua izan da: %s."
-#: db_operations.php:403
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Taula berrizendatu izen honetara: "
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komandoa"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Taula berrizendatu izen honetara: "
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s datu-basea ezabatua izan da."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Datu-baserik ez"
-#: db_operations.php:486
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Datu-baserik ez"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Egitura soilik"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Egitura eta datuak"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Datuak soilik"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s gehitu"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Gehitu AUTO_INCREMENT balioa"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Murrizketak gehitu"
-#: db_operations.php:527
+#: db_operations.php:528
#, fuzzy
msgid "Switch to copied database"
msgstr "Kopiatutako taulara aldatu"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -349,7 +348,7 @@ msgstr "Kopiatutako taulara aldatu"
msgid "Collation"
msgstr "Ordenamendua"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -361,7 +360,7 @@ msgstr ""
"Estekatutako taulekin lan egiteko hobespen gehigarriak ezgaitu dira . "
"Zergatia jakiteko egizu klik %shemen%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -514,102 +513,102 @@ msgstr "SQL-kontsulta %s datu-basean:"
msgid "Submit Query"
msgstr "Kontsulta bidali"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Zure SQL-kontsula arrakastaz burutu da"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL-k emaitza hutsa itzuli du. (i.e. zero errenkada)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL-ek zera dio: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Prozesuak"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Ez da taularik aurkitu datu-basean."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "%s taula ezabatu egin da"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "%s taula ezabatu egin da"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Zerbitzariaren bertsioa"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -746,8 +745,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -815,8 +814,8 @@ msgstr "Inprimatzeko ikuspegia"
msgid "Empty"
msgstr "Hutsik"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -894,9 +893,9 @@ msgstr ""
msgid "Status"
msgstr "Egoera"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -994,8 +993,8 @@ msgstr "Iraulketa %s fitxategian gorde da."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1173,11 +1172,11 @@ msgstr "Hautatutako erabiltzaileak baztertu"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editatu"
@@ -1798,6 +1797,212 @@ msgstr "lanean"
msgid "Second"
msgstr "segunduko"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ez dago indizerik definituta!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indizeak"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Bakarra"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitatea"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Iruzkinak"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Lehen mailako gakoa ezabatu da"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indizea ezabatu da"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datu-baseak"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Errorea"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Taularik ez"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s taula %s-(e)ra berrizendatua izan da"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1811,8 +2016,8 @@ msgstr "Ongietorriak %s(e)ra"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1915,14 +2120,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Errorea"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1975,11 +2172,6 @@ msgstr "Taulak"
msgid "Data"
msgstr "Datuak"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indizeak"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2261,8 +2453,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Itxi gabeko komatxoak"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Egitura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Egitura eta datuak"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "\"Insert\"ak osatu"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "\"insert\" hedatuak"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2935,12 +3204,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datu-baseak"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4468,87 +4731,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Itxi gabeko komatxoak"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Egitura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Egitura eta datuak"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "\"Insert\"ak osatu"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "\"insert\" hedatuak"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4614,23 +4796,6 @@ msgstr ""
msgid "Add an event"
msgstr "Erabiltzaile berria gehitu"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4703,9 +4868,9 @@ msgstr "Luzera/Balioak*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4762,12 +4927,6 @@ msgstr "Kontsulta mota"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Iruzkinak"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4828,6 +4987,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4989,8 +5165,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5720,8 +5896,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6031,42 +6207,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6084,6 +6224,41 @@ msgstr "SQL emaitza"
msgid "Generated by"
msgstr "Egilea:"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Datu-baserik ez"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6145,41 +6320,6 @@ msgstr "Zutabe izenak"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Datu-baserik ez"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6202,40 +6342,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ez dago indizerik definituta!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Bakarra"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitatea"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Lehen mailako gakoa ezabatu da"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indizea ezabatu da"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6248,27 +6354,6 @@ msgstr "Batez"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6515,19 +6600,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Formato honek ez du aukerarik"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Taularik ez"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Okerra"
@@ -6921,6 +6993,63 @@ msgstr ""
msgid "Target database"
msgstr "Datu-basean bilatu"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Zutabe izenak"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Kontsulta hau gogokoetan gorde"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Kontsulta hau hemen berriz erakutsi"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Soilik ikusi"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Testu-fitxategiaren kokapena"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6984,63 +7113,6 @@ msgstr "Indentifikatzaile okerra"
msgid "Unknown Punctuation String"
msgstr "Puntuazio ikurra ezezaguna"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL kontsulta(k) exekutatu %s datu-basean"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Zutabe izenak"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Kontsulta hau gogokoetan gorde"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Gogokoen erregistro hau edozein erabiltzailearentzat erabilgarri "
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Kontsulta hau ez idatzi gainean leihotik kanpo"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Kontsulta hau hemen berriz erakutsi"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Soilik ikusi"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Testu-fitxategiaren kokapena"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Fitxategiak igotzeko web-zerbitzariaren direktorioa"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7051,48 +7123,6 @@ msgstr ""
"beharrezkoak diren php luzapenak instalatu dituzun %sdokumentazioan%s "
"azaltzen den moduan."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s taula %s-(e)ra berrizendatua izan da"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7224,38 +7254,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Erabiltzaile berria gehitu"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8344,8 +8342,8 @@ msgstr "Erabiltzaileen izen berdina duten datu-baseak ezabatu."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Oharra: phpMyAdmin-ek erabiltzaileen pribilegioak' zuzenean MySQL-ren "
"pribilegioen taulatik' eskuratzen ditu. Taula hauen edukiak, tartean eskuz "
diff --git a/po/fa.po b/po/fa.po
index ea6bf9062e..eaff7fcb5a 100644
--- a/po/fa.po
+++ b/po/fa.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-05-19 03:54+0200\n"
"Last-Translator: \n"
"Language-Team: persian \n"
+"Language: fa\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fa\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -42,13 +42,13 @@ msgstr ""
msgid "Search"
msgstr "جستجو"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "جستجو"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "تاييد"
@@ -119,7 +119,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "پايگاه داده %1$s ایجاد شده است."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "توضيحات پایگاه داده:"
@@ -129,9 +129,9 @@ msgstr "توضيحات پایگاه داده:"
msgid "Table comments"
msgstr "توضيحات جدول"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "توضيحات جدول"
msgid "Column"
msgstr "ستون"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "ستون"
msgid "Type"
msgstr "نوع"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,13 +195,12 @@ msgstr "پيوند به"
msgid "Comments"
msgstr "توضيحات"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +211,17 @@ msgstr "توضيحات"
msgid "No"
msgstr "خير"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -259,79 +258,79 @@ msgstr "عدم انتخاب همه"
msgid "The database name is empty!"
msgstr "نام پایگاه داده وارد نشده است!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "نام پایگاه داده %s به %s تغییر داده شد"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "پایگاه داده %s در %s کپی شد"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "تغییر نام پایگاه داده به"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "دستور"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "حذف پایگاه داده"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "پايگاه داده %s حذف گرديد."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "حذف پایگاه داده"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "کپی کردن پابگاه داده به"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "فقط ساختار"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ساختار و دادهها"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "فقط دادهها"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "پیش از کپی پایگاه داده ایجاد شود"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "افزودن %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "مقدار افزایشی خودکار اضافه شود"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "اعمال محدودیت ها"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "تعویض به پایگاه داده ی کپی شده"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -340,7 +339,7 @@ msgstr "تعویض به پایگاه داده ی کپی شده"
msgid "Collation"
msgstr "مقایسه"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -352,7 +351,7 @@ msgstr ""
"امكانات اضافي براي كاركردن با جدولهاي پيوندي غيرفعال شدهاست . براي پيداكردن "
"دليل آن %sاينجا%s را بزنيد ."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "ویرایش یا صدور نمای رابطه ای"
@@ -499,99 +498,99 @@ msgstr "پرس و جوي SQL از پايگاه داده %s:"
msgid "Submit Query"
msgstr "Submit Query"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "پرس و جوي SQL شما با موفقيت اجرا گرديد"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL يك نتيجه خالي داد. (مثلا 0 سطر)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "پيغام MySQL :"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "در پايگاه داده هيچ جدولي یافت نشد."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "جدول %s حذف گرديد"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "جدول %s حذف گرديد"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "نسخه سرور"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -719,8 +718,8 @@ msgstr "پیگردی فعال نمی باشد."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"در این نما حداقل این تعداد از سطرها موجود می باشد. لطفاً به %sنوشتار%s مراجعه "
"نمایید."
@@ -789,8 +788,8 @@ msgstr "نماي چاپ"
msgid "Empty"
msgstr "خالي كردن"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -867,9 +866,9 @@ msgstr "به روز شده"
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -965,8 +964,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1139,11 +1138,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "ويرايش"
@@ -1758,6 +1757,212 @@ msgstr "دقیقه"
msgid "Second"
msgstr " ثانیه"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "اندازه حروف"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "هيچ فهرستي تعريفنشدهاست!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "فهرستها"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "يكتا"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "توضيحات"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "كليد اصلي حذف گرديد"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "فهرست %s حذف گرديد"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "پايگاههاي داده"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "خطا"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "No tables"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "جدول %s به %s تغيير نام دادهشد"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "پش دید موجود نمی باشد"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1771,8 +1976,8 @@ msgstr "به %s خوشآمديد"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1872,14 +2077,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "خطا"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1932,11 +2129,6 @@ msgstr "جدولها"
msgid "Data"
msgstr "داده"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "فهرستها"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2219,9 +2411,84 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "اندازه حروف"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "ساختار"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "ساختار و دادهها"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "تمام وروديها"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "وروديهاي تمديدشده"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2886,12 +3153,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "پايگاههاي داده"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4402,85 +4663,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "ساختار"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "ساختار و دادهها"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "تمام وروديها"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "وروديهاي تمديدشده"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4546,23 +4728,6 @@ msgstr ""
msgid "Add an event"
msgstr "افزودن يك كاربر جديد"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4635,9 +4800,9 @@ msgstr "طول/مقادير*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4692,12 +4857,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "توضيحات"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4755,6 +4914,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4914,8 +5090,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5634,8 +5810,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5940,42 +6116,6 @@ msgstr "نمایش"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5993,6 +6133,41 @@ msgstr "نتيجه SQL"
msgid "Generated by"
msgstr "توليدشده توسط"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "No databases"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6054,41 +6229,6 @@ msgstr "نام ستونها"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "No databases"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6111,40 +6251,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "هيچ فهرستي تعريفنشدهاست!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "يكتا"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "كليد اصلي حذف گرديد"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "فهرست %s حذف گرديد"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6157,27 +6263,6 @@ msgstr "خير"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6421,19 +6506,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "No tables"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -6822,57 +6894,6 @@ msgstr ""
msgid "Target database"
msgstr "جستجو در پايگاهداده"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN CUT"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -6931,6 +6952,57 @@ msgstr "محل پرونده متني"
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN CUT"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6938,48 +7010,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "جدول %s به %s تغيير نام دادهشد"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7004,9 +7034,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:106
msgid ""
@@ -7041,9 +7071,9 @@ msgid ""
msgstr ""
"اگر نوع ستون \"enum\" يا \"set\" ميباشد ، لطفا براي ورود مقادير از اين قالب "
"استفاده نماييد : 'a','b','c'... اگر احتياج داشتيد كه از علامت مميز "
-"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده نماييد "
-"، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' يا 'a"
-"\\'b')"
+"برعكس(بكاسلش) (\" \\ \") يا نقلقول تكي (\" ' \") در آن مقادير استفاده "
+"نماييد ، قبل از آنها علامت (\" \\ \") را بگذاريد (براي مثال'\\\\xyz' "
+"يا 'a\\'b')"
#: libraries/tbl_properties.inc.php:352
msgid "ENUM or SET data too long?"
@@ -7106,38 +7136,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "افزودن يك كاربر جديد"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "پش دید موجود نمی باشد"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7340,8 +7338,8 @@ msgid ""
"this security hole by setting a password for user 'root'."
msgstr ""
"پرونده پيكربندي شما حاوي تنظيماتي است (كاربر root بدون اسم رمز) كه مرتبط با "
-"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز ميشود "
-"، و شما بايد اين حفره امنيتي را ذرست كنيد."
+"حساب پيشفرض MySQL ميباشد. اجراي MySQL با اين پيشفرض باعث ورود غيرمجاز "
+"ميشود ، و شما بايد اين حفره امنيتي را ذرست كنيد."
#: main.php:251
msgid ""
@@ -8136,8 +8134,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/fi.po b/po/fi.po
index c7bf0e5745..64a3d31fbb 100644
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-11-26 21:29+0200\n"
"Last-Translator: \n"
"Language-Team: finnish \n"
+"Language: fi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Etsi"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Etsi"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Siirry"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Tietokanta %1$s on luotu."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Tietokannan kommentti: "
@@ -132,9 +132,9 @@ msgstr "Tietokannan kommentti: "
msgid "Table comments"
msgstr "Taulun kommentit"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Taulun kommentit"
msgid "Column"
msgstr "Sarake"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Sarake"
msgid "Type"
msgstr "Tyyppi"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Linkitys sarakkeeseen:"
msgid "Comments"
msgstr "Kommentit"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Kommentit"
msgid "No"
msgstr "Ei"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Poista valinta kaikista"
msgid "The database name is empty!"
msgstr "Tietokannan nimi on tyhjä!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Tietokannan %s nimi on nyt %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Tietokanta %s on kopioitu tietokantaan %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Muuta tietokannan nimi"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komento"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Tuhoa tietokanta"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Tietokanta %s on poistettu."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Tuhoa tietokanta (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Luo tietokannasta toinen tietokanta nimellä"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Vain rakenne"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Rakenne ja tiedot"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Vain tiedot"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Suorita CREATE DATABASE ennen kopiointia"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Lisää %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Lisää AUTO_INCREMENT-arvo"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Lisää rajoitteet"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Siirry kopioituun tietokantaan"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Siirry kopioituun tietokantaan"
msgid "Collation"
msgstr "Aakkosjärjestys"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"phpMyAdminin asetusmuisti on poistettu käytöstä. Katso %slisätietoja%s, "
"mistä tämä johtuu."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Relaatioskeeman muokkaus tai vienti"
@@ -498,110 +497,110 @@ msgstr "Suorita SQL-kysely tietokannassa %s:"
msgid "Submit Query"
msgstr "Suorita"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL-kyselyn suoritus onnistui"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Sallii talletettujen rutiinien suorittamisen."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL palautti tyhjän tulosjoukon (siis nolla riviä)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Seuraavat kyselyt on suoritettu:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL ilmoittaa: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Virhe pyynnön käsittelyssä"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tietokannassa ei ole tauluja."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Vie oletusarvot"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Virheellinen palvelimen indeksi: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Taulu %s on poistettu"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Taulu %1$s on luotu."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Luo relaatio"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Muokkaustila"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -731,11 +730,11 @@ msgstr "Seuranta ei ole käytössä."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja %"
-"sohjeista%s."
+"Tässä näkymässä on vähintään tämän luvun verran rivejä. Katso lisätietoja "
+"%sohjeista%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -801,8 +800,8 @@ msgstr "Tulostusversio"
msgid "Empty"
msgstr "Tyhjennä"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -881,9 +880,9 @@ msgstr "Päivitetty"
msgid "Status"
msgstr "Tila"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -977,8 +976,8 @@ msgstr "Vedos tallennettiin tiedostoon %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Yritit todennäköisesti lähettää palvelimelle liian suurta tiedostoa. Katso "
"tämän rajoituksen muuttamisesta lisätietoja %sohjeista%s."
@@ -1161,11 +1160,11 @@ msgstr "Poista valitut käyttäjät"
msgid "Close"
msgstr "Sulje"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Muokkaa"
@@ -1718,6 +1717,223 @@ msgstr "Minuutti"
msgid "Second"
msgstr "Sekunti"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fonttikoko"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
+"asetuksen arvon."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
+"asetuksen arvon."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Tiedosto lähetettiin vain osittain."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Tilapäiskansio puuttuu."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Tiedoston kirjoitus levylle epäonnistui."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Laajennus keskeytti tiedoston lähetyksen."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Tuntematon virhe tiedostoa lähetettäessä."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeksiä ei ole määritelty!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksit"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Uniikki"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakattu"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliteetti"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentti"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Perusavain on poistettu"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksi %s on poistettu"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee "
+"poistaa."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Tietokannat"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Virhe"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rivi(ä) muutettu."
+msgstr[1] "%1$d rivi(ä) muutettu."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rivi(ä) poistettu."
+msgstr[1] "%1$d rivi(ä) poistettu."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rivi lisätty."
+msgstr[1] "%1$d riviä lisätty."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Asetuksia ei voi ladata tai tallentaa"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Laske taulujen määrä"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Palvelimia ei ole määritelty"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s on käytettävissä tällä MySQL-palvelimella."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Virheellinen tietokanta"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Virheellinen taulun nimi"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Taulun %s nimi on nyt %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Kelvollista polkua teemalle %s ei löytynyt."
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Esikatselu ei ole saatavilla."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "käytä tätä"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Oletusteemaa %s ei löydy!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Teemaa %s ei löydy!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Teeman %s polkua ei löydy!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Yhteyttä ei voitu muodostaa: virheelliset asetukset."
@@ -1731,11 +1947,11 @@ msgstr "Tervetuloa, toivottaa %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston %1"
-"$sasetusskriptillä%2$s."
+"Et liene luonut asetustiedostoa. Voit luoda asetustiedoston "
+"%1$sasetusskriptillä%2$s."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1844,14 +2060,6 @@ msgstr "PBMS-virhe"
msgid "PBMS connection failed:"
msgstr "PBMS-yhteys epäonnistui:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Virhe"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS:n BLOB-tietojen haku epäonnistui:"
@@ -1904,11 +2112,6 @@ msgstr "Taulut"
msgid "Data"
msgstr "Tietoa"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksit"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2187,9 +2390,77 @@ msgstr "Lähetettäviä tiedostoja ei ole"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fonttikoko"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Molemmat"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ei missään"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Vasen"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Oikea"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Avaa"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Suljettu"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "rakenne"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "tiedot"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "rakenne ja tiedot"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Kokonaiset lisäyslauseet"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Laajennetut lisäyslauseet"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "molemmat yltä"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ei kumpikaan yltä"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2879,12 +3150,6 @@ msgstr "Aseta tuonti- ja vientihakemistot sekä pakkauksen asetukset"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Tietokannat"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Tietokantojen näyttöasetukset"
@@ -4589,78 +4854,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Virheellinen IP-osoite: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Molemmat"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ei missään"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Vasen"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Oikea"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Avaa"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Suljettu"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "rakenne"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "tiedot"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "rakenne ja tiedot"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Nopea asetusten määritys - näytä asetuksia mahdollisimman vähän"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Mukautettu - näytä kaikki mahdolliset asetukset"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Mukautettu - kuten yllä, mutta ilman pika-/mukautettu-valintaa"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Kokonaiset lisäyslauseet"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Laajennetut lisäyslauseet"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "molemmat yltä"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ei kumpikaan yltä"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4731,26 +4924,6 @@ msgstr ""
msgid "Add an event"
msgstr "Lisää uusi palvelin"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Palvelin ei vastaa"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
-"oikein)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Lisätiedot..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4825,9 +4998,9 @@ msgstr "Pituus/Arvot*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4886,11 +5059,6 @@ msgstr "Turvallisuus"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentti"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4955,6 +5123,26 @@ msgid ""
"3.11[/a]"
msgstr "Saattaa olla summittainen. Katso FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Yhteyden muodostus asetuksissa määriteltyyn superuser-käyttäjään epäonnistui."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Palvelin ei vastaa"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(tai paikallisen MySQL-palvelimen pistokkeen asetuksia ei ole määritelty "
+"oikein)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Lisätiedot..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5126,8 +5314,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Tämä arvo on %1$sstrftime%2$s-funktion mukainen, joten "
"ajanmuodostostusmerkkijonoja voi käyttää. Lisäksi tapahtuu seuraavat "
@@ -5928,8 +6116,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6245,46 +6433,6 @@ msgstr "Näkymä"
msgid "Export contents"
msgstr "Vie sisällöt"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Lähetyn tidoston koko ylittää php.ini-tiedoston upload_max_filesize-"
-"asetuksen arvon."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Lähetetyn tiedoston koko ylittää HTML-lomakkeessa määritetyn MAX_FILE_SIZE-"
-"asetuksen arvon."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Tiedosto lähetettiin vain osittain."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Tilapäiskansio puuttuu."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Tiedoston kirjoitus levylle epäonnistui."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Laajennus keskeytti tiedoston lähetyksen."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Tuntematon virhe tiedostoa lähetettäessä."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Virhe lähetettäessä tiedostoa, katso FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6304,6 +6452,41 @@ msgstr "SQL-kyselyn tulos"
msgid "Generated by"
msgstr "Luontiympäristö"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "näyttää rakenteen sisällön painamalla sen nimeä"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Siirry tietokantaan"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "asetukset"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Siirry tauluun"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Siirry näkymään"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6366,41 +6549,6 @@ msgstr "Sarakkeiden nimet"
msgid "This plugin does not support compressed imports!"
msgstr "Tämä lisäosa ei tue pakattujen tuontien käyttöä!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Seuraavat rakenteet on joko luotu tai niitä on muutettu. Voit:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "näyttää rakenteen sisällön painamalla sen nimeä"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"muuttaa mitä tahansa sen asetuksia painamalla vastaavaa \"Valinnat\"-linkkiä"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Muokkaa sen rakennetta seuraamalla \"Rakenne\"-linkkiä"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Siirry tietokantaan"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "asetukset"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Siirry tauluun"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Siirry näkymään"
-
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6433,42 +6581,6 @@ msgstr ""
"Määritetty XML-tiedosto on joko epämuotoinen tai vaillinainen. Korjaa "
"ongelma ja yritä uudestaan."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeksiä ei ole määritelty!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Uniikki"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakattu"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliteetti"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Perusavain on poistettu"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksi %s on poistettu"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksit %1$s ja %2$s ovat ehkä samoja, ja niistä jompikumpi kannattanee "
-"poistaa."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6481,27 +6593,6 @@ msgstr "Ei mitään"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rivi(ä) muutettu."
-msgstr[1] "%1$d rivi(ä) muutettu."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rivi(ä) poistettu."
-msgstr[1] "%1$d rivi(ä) poistettu."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rivi lisätty."
-msgstr[1] "%1$d riviä lisätty."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6747,24 +6838,6 @@ msgstr "Mukauta navigointikehystä"
msgid "This format has no options"
msgstr "Tälle tiedostomuodolle ei ole valinta-asetuksia"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Asetuksia ei voi ladata tai tallentaa"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Laske taulujen määrä"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Palvelimia ei ole määritelty"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Ei kunnossa"
@@ -7156,6 +7229,61 @@ msgstr "Ero"
msgid "Target database"
msgstr "Kohdetietokanta"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Suorita SQL-kysely(jä) palvelimella %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Suorita SQL-kyselyjä tietokannassa %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Tyhjennä"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Sarakkeet"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Tallenna SQL-kysely"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Erotinmerkki"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Näytä kyselylause uudelleen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Näytä"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tiedoston sijainti"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "palvelimen lähetyshakemisto"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7217,61 +7345,6 @@ msgstr "Tunniste ei kelpaa"
msgid "Unknown Punctuation String"
msgstr "Tuntematon välimerkki"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Suorita SQL-kysely(jä) palvelimella %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Suorita SQL-kyselyjä tietokannassa %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Tyhjennä"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Sarakkeet"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Tallenna SQL-kysely"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Anna kaikkien käyttäjien käyttää tätä kirjanmerkkiä"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Korvaa samanniminen, olemassa oleva kirjanmerkki"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Älä korvaa tätä kyselyä ikkunan ulkopuolelta"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Erotinmerkki"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Näytä kyselylause uudelleen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Näytä"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tiedoston sijainti"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "palvelimen lähetyshakemisto"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7281,49 +7354,6 @@ msgstr ""
"SQL-tarkistinta ei voitu käynnistää. Tarkista, että tarpeelliset PHP-"
"laajennukset on asennettu. Lisätietoa on %sohjeissa%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Tämän tallennusmoottorin tilasta ei ole saatavilla yksityiskohtaisia tietoja."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s on käytettävissä tällä MySQL-palvelimella."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s ei ole käytettävissä tällä MySQL-palvelimella."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tämä MySQL-palvelin ei tue %s-tallennusmoottoria."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Virheellinen tietokanta"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Virheellinen taulun nimi"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Virhe annettaessa taululle %1$s nimeä %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Taulun %s nimi on nyt %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Taulu on tyhjä!"
@@ -7454,38 +7484,6 @@ msgstr "PARTITION-määritelmä"
msgid "+ Add a value"
msgstr "Lisää uusi palvelin"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Kelvollista polkua teemalle %s ei löytynyt."
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Esikatselu ei ole saatavilla."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "käytä tätä"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Oletusteemaa %s ei löydy!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Teemaa %s ei löydy!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Teeman %s polkua ei löydy!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8628,8 +8626,8 @@ msgstr "Poista tietokannat, joilla on sama nimi kuin käyttäjillä."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Huom: PhpMyAdmin hakee käyttäjien käyttöoikeudet suoraan MySQL-palvelimen "
"käyttöoikeustauluista. Näiden taulujen sisältö saattaa poiketa palvelimen "
@@ -10271,9 +10269,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/fr.po b/po/fr.po
index 85f2468f56..a64cc2096e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-23 15:36+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-26 13:35+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: french \n"
+"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: fr\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Rechercher"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Rechercher"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Exécuter"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "La base de données %1$s a été créée."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Commentaire sur la base de données: "
@@ -133,9 +133,9 @@ msgstr "Commentaire sur la base de données: "
msgid "Table comments"
msgstr "Commentaires sur la table"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Commentaires sur la table"
msgid "Column"
msgstr "Colonne"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Colonne"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Relié à"
msgid "Comments"
msgstr "Commentaires"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Commentaires"
msgid "No"
msgstr "Non"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Tout désélectionner"
msgid "The database name is empty!"
msgstr "Le nom de la base de données est vide !"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "La base de données %s a été renommée en %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "La base de données %s a été copiée sur %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Changer le nom de la base de données pour"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Commande"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Supprimer la base de données"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "La base de données %s a été effacée."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Supprimer la base de données (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copier la base de données vers"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Structure seule"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structure et données"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Données seulement"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Faire CREATE DATABASE avant la copie"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Ajouter %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Inclure la valeur courante de l'AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Inclure les contraintes de clés étrangères"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Aller à la base de données copiée"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Aller à la base de données copiée"
msgid "Collation"
msgstr "Interclassement"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +352,7 @@ msgstr ""
"Le stockage de configurations phpMyAdmin a été désactivé. Pour une analyse "
"du problème, cliquez %sici%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Éditer ou exporter un schéma relationnel"
@@ -499,101 +498,100 @@ msgstr "Requête SQL sur la base %s: "
msgid "Submit Query"
msgstr "Exécuter la requête"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Votre requête SQL a été exécutée avec succès"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "%d ligne a été affectée par le dernier énoncé de la procédure"
msgstr[1] "%d lignes ont été affectées par le dernier énoncé de la procédure"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Résultats de l'exécution de la procédure %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a retourné un résultat vide (aucune ligne)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
msgstr "La requête «%s» a échoué"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL a répondu: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Erreur dans le traitement de la requête"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
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"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Exécuter la procédure"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Exporter la procédure %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Type de procédure invalide : «%s»"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Désolé, il a été impossible de restaurer la procédure."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "La requête conservée est :"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "La procédure %1$s a été modifiée."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "La procédure %1$s a été créée."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
"Au moins une erreur s'est produite lors du traitement de la requête :"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Créer une procédure"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Modifier une procédure"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -722,11 +720,11 @@ msgstr "Le suivi n'est pas activé."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Cette vue contient au moins ce nombre de lignes. Veuillez référer à %"
-"sdocumentation%s."
+"Cette vue contient au moins ce nombre de lignes. Veuillez référer à "
+"%sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -792,8 +790,8 @@ msgstr "Version imprimable"
msgid "Empty"
msgstr "Vider"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -866,9 +864,9 @@ msgstr "Mis à jour"
msgid "Status"
msgstr "État"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -964,8 +962,8 @@ msgstr "Le fichier d'exportation a été sauvegardé sous %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Vous avez probablement tenté de télécharger un fichier trop volumineux. "
"Veuillez vous référer à la %sdocumentation%s pour des façons de contourner "
@@ -1151,11 +1149,11 @@ msgstr "Effacement des utilisateurs sélectionnés"
msgid "Close"
msgstr "Fermer"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifier"
@@ -1686,6 +1684,220 @@ msgstr "Minute"
msgid "Second"
msgstr "Seconde"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Taille du texte"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"La taille du fichier téléchargé dépasse la limite permise par la directive "
+"upload_max_filesize de php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"La taille du fichier téléchargé dépasse la limite permise par la directive "
+"MAX_FILE_SIZE présente dans le formulaire HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Le fichier n'a été que partiellement téléchargé."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Répertoire temporaire manquant."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Erreur lors de l'écriture du fichier sur disque."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Téléchargement arrêté par l'extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erreur inconnue durant le téléchargement."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Aucun index n'est défini !"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Index"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unique"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Compressé"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalité"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Commentaire"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La clé primaire a été effacée"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "L'index %s a été effacé"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être "
+"supprimé."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de données"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Erreur"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d ligne affectée."
+msgstr[1] "%1$d lignes affectées."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ligne supprimée."
+msgstr[1] "%1$d lignes supprimées."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ligne insérée."
+msgstr[1] "%1$d lignes insérées."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Impossible de sauvegarder l'historique des tables récentes"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tables récentes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Il n'y a pas de tables récentes"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Aucune information détaillée sur l'état n'est disponible pour ce moteur de "
+"stockage."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s est disponible sur ce serveur MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s a été désactivé sur ce serveur MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Nom de base de données invalide"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nom de table invalide"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Erreur lors du renommage de %1$s en %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La table %s se nomme maintenant %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Impossible de sauvegarder les préférences d'interface de tables"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Chemin des images inexistant pour le thème %s !"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Prévisualisation non disponible."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "utiliser celui-ci"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Thème par défaut %s inexistant !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Thème %s inexistant !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Chemin non trouvé pour le thème %s !"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Thème"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Connexion impossible: paramètres incorrects."
@@ -1699,8 +1911,8 @@ msgstr "Bienvenue sur %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La raison probable est que vous n'avez pas créé de fichier de configuration. "
"Vous pouvez utiliser le %1$sscript de configuration%2$s dans ce but."
@@ -1809,14 +2021,6 @@ msgstr "Erreur PBMS"
msgid "PBMS connection failed:"
msgstr "La connexion PBMS a échoué :"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Erreur"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "L'accès aux informations BLOB de PBMS a échoué :"
@@ -1869,11 +2073,6 @@ msgstr "Tables"
msgid "Data"
msgstr "Données"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Index"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -1909,6 +2108,8 @@ msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
+"Ceci indique habituellement qu'il y a une erreur de syntaxe, veuillez "
+"vérifier si une erreur s'affiche plus bas."
#: libraries/common.inc.php:595
#, php-format
@@ -2157,9 +2358,77 @@ msgstr "Aucun fichier n'est disponible pour le transfert"
msgid "Execute"
msgstr "Exécuter"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Taille du texte"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Les deux"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nulle part"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "À gauche"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "À droite"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Ouvert"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Fermé"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structure"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "données"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "structure et données"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rapide - n'afficher qu'un minimum d'options à configurer"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personnalisée - afficher toutes les options possibles"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Insertions complètes"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Insertions étendues"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "tous les choix ci-haut"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "aucun des choix ci-haut"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2820,12 +3089,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de données"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Options d'affichage des bases de données"
@@ -4458,78 +4721,6 @@ msgstr "Le controlpass est vide"
msgid "Incorrect IP address: %s"
msgstr "Adresse IP incorrecte : %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Les deux"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nulle part"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "À gauche"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "À droite"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Ouvert"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Fermé"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structure"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "données"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "structure et données"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rapide - n'afficher qu'un minimum d'options à configurer"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personnalisée - afficher toutes les options possibles"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personnalisée - comme ci-haut mais sans les choix rapide/personnalisée"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Insertions complètes"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Insertions étendues"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "tous les choix ci-haut"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "aucun des choix ci-haut"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4590,30 +4781,8 @@ msgid "Turn it off"
msgstr "Le désactiver"
#: libraries/db_events.inc.php:141
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add an event"
-msgstr "Ajouter un serveur"
-
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"La connexion au controluser tel que défini dans votre configuration a échoué."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Le serveur ne répond pas"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou l'interface de connexion vers le serveur MySQL local n'est pas "
-"correctement configurée)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Détails..."
+msgstr "Ajouter un évènement."
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4682,9 +4851,9 @@ msgstr "Taille/Valeurs*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4731,11 +4900,6 @@ msgstr "Type de sécurité"
msgid "SQL data access"
msgstr "Accès aux données SQL"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Commentaire"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Paramètres de procédure"
@@ -4796,6 +4960,26 @@ msgstr ""
"Peut être approximatif. Voir [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"La connexion au controluser tel que défini dans votre configuration a échoué."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Le serveur ne répond pas"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou l'interface de connexion vers le serveur MySQL local n'est pas "
+"correctement configurée)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Détails..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4934,8 +5118,8 @@ msgstr ", @TABLE@ sera remplacé par le nom de la table"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Cette valeur est interprétée avec %1$sstrftime%2$s, vous pouvez donc "
"utiliser des chaînes de format d'heure. Ces transformations additionnelles "
@@ -5260,10 +5444,8 @@ msgid "Event"
msgstr "Événement"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a trigger"
-msgstr "Ajouter un serveur"
+msgstr "Ajouter un déclencheur"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -5719,8 +5901,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"La documentation de PBXT et des informations additionnelles sont disponibles "
"sur %sle site de PrimeBase XT%s."
@@ -5870,7 +6052,8 @@ msgstr ""
#: libraries/export/sql.php:43
msgid "Additional custom header comment (\\n splits lines):"
-msgstr "Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
+msgstr ""
+"Commentaires mis en en-tête (séparer les lignes par «\\» suivi de «n») :"
#: libraries/export/sql.php:48
msgid ""
@@ -6028,48 +6211,6 @@ msgstr "Vues"
msgid "Export contents"
msgstr "Exporter le contenu"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"La taille du fichier téléchargé dépasse la limite permise par la directive "
-"upload_max_filesize de php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"La taille du fichier téléchargé dépasse la limite permise par la directive "
-"MAX_FILE_SIZE présente dans le formulaire HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Le fichier n'a été que partiellement téléchargé."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Répertoire temporaire manquant."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Erreur lors de l'écriture du fichier sur disque."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Téléchargement arrêté par l'extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erreur inconnue durant le téléchargement."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Erreur lors du déplacement du fichier téléchargé, voir [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6087,6 +6228,42 @@ msgstr "Résultat de la requête SQL"
msgid "Generated by"
msgstr "Généré par"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Consulter le contenu d'une structure en cliquant sur son nom"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Modifiez l'un des paramètres en cliquant le lien «Options» correspondant"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modifier sa structure via le lien «Structure»"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Aller à la base de données"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "paramètres"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Aller à la table"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Aller à la vue"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6155,42 +6332,6 @@ msgstr "Nom des colonnes"
msgid "This plugin does not support compressed imports!"
msgstr "Ce greffon ne supporte pas les importations en format comprimé !"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Les structures suivanates ont été créées ou modifiées. Ici vous pouvez :"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Consulter le contenu d'une structure en cliquant sur son nom"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Modifiez l'un des paramètres en cliquant le lien «Options» correspondant"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modifier sa structure via le lien «Structure»"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Aller à la base de données"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "paramètres"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Aller à la table"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Aller à la vue"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6216,42 +6357,6 @@ msgstr ""
"Le fichier XML spécifié était mal formé ou incomplet. Veuillez le corriger "
"et essayer à nouveau."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Aucun index n'est défini !"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unique"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Compressé"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalité"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La clé primaire a été effacée"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "L'index %s a été effacé"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Les index %1$s et %2$s semblent identiques et l'un d'eux pourrait être "
-"supprimé."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6262,27 +6367,6 @@ msgstr "Aucune"
msgid "Convert to Kana"
msgstr "Conversion en kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d ligne affectée."
-msgstr[1] "%1$d lignes affectées."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ligne supprimée."
-msgstr[1] "%1$d lignes supprimées."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ligne insérée."
-msgstr[1] "%1$d lignes insérées."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Depuis"
@@ -6521,18 +6605,6 @@ msgstr "Actualiser"
msgid "This format has no options"
msgstr "Ce format ne comporte pas d'options"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Impossible de sauvegarder l'historique des tables récentes"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tables récentes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Il n'y a pas de tables récentes"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "en erreur"
@@ -6918,6 +6990,61 @@ msgstr "Différence"
msgid "Target database"
msgstr "Base de données cible"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Exécuter une ou des requêtes SQL sur le serveur %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Exécuter une ou des requêtes SQL sur la base %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vider"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Colonnes"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Conserver cette requête SQL dans les signets"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Signet visible pour les autres utilisateurs"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Remplacer un signet existant du même nom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne pas écraser cette requête depuis une autre fenêtre"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Délimiteur"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Afficher à nouveau la requête après exécution"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Voir uniquement"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Emplacement du fichier texte"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "répertoire de transfert du serveur web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6980,61 +7107,6 @@ msgstr "Identificateur invalide"
msgid "Unknown Punctuation String"
msgstr "Ponctuation invalide"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Exécuter une ou des requêtes SQL sur le serveur %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Exécuter une ou des requêtes SQL sur la base %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vider"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Colonnes"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Conserver cette requête SQL dans les signets"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Signet visible pour les autres utilisateurs"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Remplacer un signet existant du même nom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne pas écraser cette requête depuis une autre fenêtre"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Délimiteur"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Afficher à nouveau la requête après exécution"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Voir uniquement"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Emplacement du fichier texte"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "répertoire de transfert du serveur web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7042,52 +7114,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Le validateur SQL n'a pas pu être initialisé. Vérifiez que les extensions "
-"PHP nécessaires ont bien été installées tel que décrit dans la %"
-"sdocumentation%s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Aucune information détaillée sur l'état n'est disponible pour ce moteur de "
-"stockage."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s est disponible sur ce serveur MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s a été désactivé sur ce serveur MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ce serveur MySQL ne supporte pas le moteur de stockage %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Nom de base de données invalide"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nom de table invalide"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Erreur lors du renommage de %1$s en %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La table %s se nomme maintenant %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Impossible de sauvegarder les préférences d'interface de tables"
+"PHP nécessaires ont bien été installées tel que décrit dans la "
+"%sdocumentation%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7209,38 +7237,6 @@ msgstr "Définition de PARTITION"
msgid "+ Add a value"
msgstr "+ Ajouter une valeur"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Chemin des images inexistant pour le thème %s !"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Prévisualisation non disponible."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "utiliser celui-ci"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Thème par défaut %s inexistant !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Thème %s inexistant !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Chemin non trouvé pour le thème %s !"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Thème"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8308,8 +8304,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin obtient la liste des privilèges directement à partir des "
"tables MySQL. Le contenu de ces tables peut être différent des privilèges "
@@ -9786,8 +9782,8 @@ msgid ""
msgstr ""
"Cette %soption%s ne devrait pas être activée car elle permet à un attaquant "
"de tenter de forcer l'entrée sur tout serveur MySQL. Si vous en avez "
-"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance%"
-"s."
+"réellement besoin, utilisez la %sliste des serveurs mandataires de confiance"
+"%s."
#: setup/lib/index.lib.php:252
msgid ""
@@ -9839,8 +9835,8 @@ msgid ""
msgstr ""
"Le paramètre %sLogin cookie validity%s avec une valeur de plus de 1440 "
"secondes peut causer des interruptions de la session de travail si le "
-"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement %"
-"d)."
+"paramètre %ssession.gc_maxlifetime%s a une plus petite valeur (actuellement "
+"%d)."
#: setup/lib/index.lib.php:262
#, php-format
@@ -9859,8 +9855,8 @@ msgid ""
"cookie validity%s must be set to a value less or equal to it."
msgstr ""
"Si vous utilisez l'authentification cookie et que le paramètre %sLogin "
-"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity%"
-"s doit avoir une valeur plus petite ou égale à celui-ci."
+"cookie store%s n'a pas une valeur de 0, le paramètre %sLogin cookie validity"
+"%s doit avoir une valeur plus petite ou égale à celui-ci."
#: setup/lib/index.lib.php:266
#, php-format
@@ -9870,8 +9866,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Si vous l'estimez nécessaire, utilisez des paramètres de protection - %"
-"sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
+"Si vous l'estimez nécessaire, utilisez des paramètres de protection - "
+"%sauthentification du serveur%s et %sserveurs mandataires de confiance%s. "
"Cependant, la protection par adresse IP peut ne pas être fiable si votre IP "
"appartient à un fournisseur via lequel des milliers d'utilisateurs, vous y "
"compris, sont connectés."
@@ -10117,10 +10113,8 @@ msgid "Label column"
msgstr "Colonne pour étiquette"
#: tbl_gis_visualization.php:167
-#, fuzzy
-#| msgid "- none -"
msgid "-- None --"
-msgstr "- aucun -"
+msgstr "-- Aucun --"
#: tbl_gis_visualization.php:180
msgid "Spatial column"
diff --git a/po/gl.po b/po/gl.po
index 1edb1a25ff..281b376224 100644
--- a/po/gl.po
+++ b/po/gl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-21 14:50+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: galician \n"
+"Language: gl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: gl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Procurar"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Creouse a base de datos %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentario da base de datos: "
@@ -133,9 +133,9 @@ msgstr "Comentario da base de datos: "
msgid "Table comments"
msgstr "Comentarios da táboa"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Comentarios da táboa"
msgid "Column"
msgstr "Nomes das columnas"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nomes das columnas"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,13 +201,12 @@ msgstr "Vincúlase con"
msgid "Comments"
msgstr "Comentarios"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +217,17 @@ msgstr "Comentarios"
msgid "No"
msgstr "Non"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,83 +264,83 @@ msgstr "Non seleccionar nada"
msgid "The database name is empty!"
msgstr "Ese nome de base de datos non existe."
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Mudóuselle o nome á base de datos %s para %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Copiuse a base de datos %s para %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Mudar o nome da base de datos para"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Orde"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Mudar o nome da base de datos para"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Eliminouse a base de datos %s."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ir á base de datos"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar a base de datos para"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Só a estrutura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e datos"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Só os datos"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREAR UNHA BASE DE DATOS antes de copiar"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Engadir %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Engadir o valor incremental (AUTO_INCREMENT)"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Engadir limitacións"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pasar á base de datos copiada"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -350,7 +349,7 @@ msgstr "Pasar á base de datos copiada"
msgid "Collation"
msgstr "Orde alfabética"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -362,7 +361,7 @@ msgstr ""
"Desactivouse a funcionalidade adicional para o traballo con táboas "
"vinculadas. Para saber o por que, prema %saquí%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -515,110 +514,110 @@ msgstr "Procura tipo SQL na base de datos %s:"
msgid "Submit Query"
msgstr "Enviar esta procura"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "A seu orde de SQL executouse sen problemas"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Permite executar rutinas almacenadas."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou un conxunto vacío (ex. cero rexistros)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Executáronse as procuras seguintes:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Mensaxes do MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procesos"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Non se achou ningunha táboa na base de datos"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export functions"
msgid "Export of routine %s"
msgstr "Exportar as funcións"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "O índice do servidor non é válido: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Eliminouse a táboa %s"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Creouse a táboa %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Crear relación"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Modo de edición"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -755,11 +754,11 @@ msgstr "O seguemento non está activado."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation%"
-"s."
+"Esta vista ten, cando menos, este número de fileiras. Vexa a %sdocumentation"
+"%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -825,8 +824,8 @@ msgstr "Visualización previa da impresión"
msgid "Empty"
msgstr "Borrar"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -905,9 +904,9 @@ msgstr "Actualizada"
msgid "Status"
msgstr "Estado"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1001,11 +1000,11 @@ msgstr "Gardouse o volcado no ficheiro %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a %"
-"sdocumentación%s para averiguar como evitar este límite."
+"Posibelmente tentou enviar un ficheiro demasiado grande. Consulte a "
+"%sdocumentación%s para averiguar como evitar este límite."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1196,11 +1195,11 @@ msgstr "Eliminar os usuarios seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modificar"
@@ -1843,6 +1842,227 @@ msgstr "en uso"
msgid "Second"
msgstr "por segundo"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamaño da letra"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
+"formulario HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "O ficheiro enviado só se recibiu parcialmente."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Falta un directorio temporal."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Non se puido escribir no disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Detívose o envío do ficheiro por causa do engadido."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erro descoñecido ao enviar o ficheiro."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Non se definiu ningún índice"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Empaquetado"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidade"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentario"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Eliminouse a chave primaria"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Eliminouse o índice %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase "
+"eliminar un deles"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bases de datos"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Houbo un erro"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d fileira(s) afectada(s)."
+msgstr[1] "%1$d fileira(s) afectada(s)."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d fileira(s) eliminada(s)."
+msgstr[1] "%1$d fileira(s) eliminada(s)."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d fileira(s) inserida(s)."
+msgstr[1] "%1$d fileira(s) inserida(s)."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Non se puido cargar ou gravar a configuración"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Contar as táboas"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Non hai ningún servidor configurado"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Non se conta con información de estado detallada sobre este motor de "
+"almacenamento."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está dispoñíbel neste servidor de MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s foi desactivado neste servidor de MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "A base de datos non é válida"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Non se admite este nome de táboa."
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "A táboa %s chámase agora %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Non hai un camiño válido de imaxe para o tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Non se dispón de previsualización."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "cólleo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Non se atopou o tema por omisión %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Non se atopou o tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Non se atopou o camiño do tema para o tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Non se pode conectar: os axustes non son válidos."
@@ -1856,8 +2076,8 @@ msgstr "Reciba a benvida a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Isto débese, posibelmente, a que non se creou un ficheiro de configuración. "
"Tal vez queira utilizar %1$ssetup script%2$s para crear un."
@@ -1973,14 +2193,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Codificación de caracteres (Collation) da conexión de MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Houbo un erro"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2033,11 +2245,6 @@ msgstr "Táboas"
msgid "Data"
msgstr "Datos"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2332,9 +2539,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamaño da letra"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Fechar"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e datos"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Insercións completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Insercións estendidas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3045,12 +3328,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bases de datos"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcións de exhibición das bases de datos"
@@ -4783,86 +5060,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "O enderezo IP é incorrecto: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Fechar"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e datos"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Insercións completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Insercións estendidas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4933,25 +5130,6 @@ msgstr ""
msgid "Add an event"
msgstr "Engadir un servidor novo"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Fallou a conexión para controluser tal e como se define na súa configuración."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "O servidor non está a responder"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou o socket local do servidor de MySQL non se configurou correctamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalles..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5026,9 +5204,9 @@ msgstr "Tamaño/Definir*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5087,11 +5265,6 @@ msgstr "Seguranza"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentario"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5156,6 +5329,25 @@ msgid ""
"3.11[/a]"
msgstr "Pode non ser exacto. Consulte a FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Fallou a conexión para controluser tal e como se define na súa configuración."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "O servidor non está a responder"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou o socket local do servidor de MySQL non se configurou correctamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalles..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5328,8 +5520,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Este valor interprétase utilizando %1$sstrftime%2$s, de maneira que pode "
"utilizar cadeas de formato de hora. Produciranse transformacións en "
@@ -6147,8 +6339,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6464,46 +6656,6 @@ msgstr "Vista"
msgid "Export contents"
msgstr "Exportar o contido"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"O tamaño do ficheiro enviado excede a directiva upload_max_filesize de php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O tamaño do ficheiro excede a directiva MAX_FILE_SIZE que se especificou no "
-"formulario HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "O ficheiro enviado só se recibiu parcialmente."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Falta un directorio temporal."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Non se puido escribir no disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Detívose o envío do ficheiro por causa do engadido."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erro descoñecido ao enviar o ficheiro."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Erro ao mover o ficheiro enviado. Consulte FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6521,6 +6673,41 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Xerado por"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Ver o contido dunha estrutura premendo o seu nome"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ir á base de datos"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "opcións"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ir á táboa"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ir á vista"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6583,41 +6770,6 @@ msgstr "Nomes das columnas"
msgid "This plugin does not support compressed imports!"
msgstr "Este engadido non é capaz de realizar importacións comprimidas!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "As estruturas seguintes foron creadas ou alteradas. Aquí pode:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Ver o contido dunha estrutura premendo o seu nome"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Mude calqueraa destas opcións premendo a ligazón \"Opcións\" correspondente"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modificar a súa estrutura seguindo a ligazón \"Estrutura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ir á base de datos"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "opcións"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ir á táboa"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ir á vista"
-
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6650,42 +6802,6 @@ msgstr ""
"O ficheiro XML especificado estaba estragado ou incompleto. Corrixa o "
"problema e ténteo de novo."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Non se definiu ningún índice"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Empaquetado"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidade"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Eliminouse a chave primaria"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Eliminouse o índice %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Parece que os índice %1$s e %2$s son iguais e posibelmente poderíase "
-"eliminar un deles"
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6698,30 +6814,6 @@ msgstr "Ningunha"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d fileira(s) afectada(s)."
-msgstr[1] "%1$d fileira(s) afectada(s)."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d fileira(s) eliminada(s)."
-msgstr[1] "%1$d fileira(s) eliminada(s)."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d fileira(s) inserida(s)."
-msgstr[1] "%1$d fileira(s) inserida(s)."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6967,24 +7059,6 @@ msgstr "Personalizar a moldura de navegación"
msgid "This format has no options"
msgstr "Este formato non ten opcións"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Non se puido cargar ou gravar a configuración"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Contar as táboas"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Non hai ningún servidor configurado"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "non conforme"
@@ -7384,6 +7458,63 @@ msgstr "Diferenza"
msgid "Target database"
msgstr "Base de datos de destino"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executar procura/s SQL no servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Efectuar unha procura SQL na base de datos %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nomes das columnas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Gardar esta procura de SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permitir que calquera usuario poida acceder a este marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Substituír un marcador xa existente que teña o mesmo nome"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Non escribir sobre esta procura desde fóra da xanela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitador"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta procura aquí outra vez "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Só visualizar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localización do arquivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directorio de recepción do servidor web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7448,63 +7579,6 @@ msgstr "O identificador non é válido"
msgid "Unknown Punctuation String"
msgstr "Hai unha secuencia de puntuación que resulta descoñecida"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executar procura/s SQL no servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Efectuar unha procura SQL na base de datos %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nomes das columnas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Gardar esta procura de SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permitir que calquera usuario poida acceder a este marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Substituír un marcador xa existente que teña o mesmo nome"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Non escribir sobre esta procura desde fóra da xanela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitador"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta procura aquí outra vez "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Só visualizar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localización do arquivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directorio de recepción do servidor web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7514,50 +7588,6 @@ msgstr ""
"Non foi posíbel iniciar o comprobador de SQL. Comprobe que ten instalados "
"todos os engadidos de php tal e como se describe na %sdocumentación%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Non se conta con información de estado detallada sobre este motor de "
-"almacenamento."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está dispoñíbel neste servidor de MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s foi desactivado neste servidor de MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Este servidor de MySQL non acepta o motor de almacenamento %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "A base de datos non é válida"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Non se admite este nome de táboa."
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Houbo un erro ao mudarlle o nome á táboa %1$s para %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "A táboa %s chámase agora %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Parece ser que a táboa está baleira!"
@@ -7689,38 +7719,6 @@ msgstr "Definición da PARTICIÓN"
msgid "+ Add a value"
msgstr "Engadir un servidor novo"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Non hai un camiño válido de imaxe para o tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Non se dispón de previsualización."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "cólleo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Non se atopou o tema por omisión %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Non se atopou o tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Non se atopou o camiño do tema para o tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8117,8 +8115,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na %"
-"sdocumentation%s."
+"Servidor a executarse con Suhosin. Consulte os posíbeis problemas na "
+"%sdocumentation%s."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8868,8 +8866,8 @@ msgstr "Eliminar as bases de datos que teñan os mesmos nomes que os usuarios."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: phpMyAdmin recolle os privilexios dos usuarios directamente das táboas "
"de privilexios do MySQL. O contido destas táboas pode diferir dos "
@@ -10524,9 +10522,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/he.po b/po/he.po
index a1ee7289d6..73ccc612ee 100644
--- a/po/he.po
+++ b/po/he.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-03-02 20:17+0200\n"
"Last-Translator: \n"
"Language-Team: hebrew \n"
+"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: he\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -42,13 +42,13 @@ msgstr "עדכון חלון הדפדפן הנבחר נכשל."
msgid "Search"
msgstr "חיפוש"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -61,18 +61,18 @@ msgstr "חיפוש"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "סע"
@@ -117,7 +117,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "מסד הנתונים %s נמחק."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "הערה על מאגר הנתונים: "
@@ -127,9 +127,9 @@ msgstr "הערה על מאגר הנתונים: "
msgid "Table comments"
msgstr "הערות טבלה"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "הערות טבלה"
msgid "Column"
msgstr "שמות עמודה"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "שמות עמודה"
msgid "Type"
msgstr "סוג"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,13 +195,12 @@ msgstr "קישורים אל"
msgid "Comments"
msgstr "הערות"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +211,17 @@ msgstr "הערות"
msgid "No"
msgstr "לא"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -259,82 +258,82 @@ msgstr "בטל בחירת הכל"
msgid "The database name is empty!"
msgstr "שם מאגר הנתונים ריק!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "מאגר נתונים %s שונה אל %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "מאגר נתונים %s הועתק אל %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "שינוי שם מאגר נתונים אל"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "פקודה"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "שינוי שם מאגר נתונים אל"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "מסד הנתונים %s נמחק."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "אין מאגרי נתונים"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "העתקת מאגר נתונים אל"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "מבנה בלבד"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "מבנה ומידע"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "מידע בלבד"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE לפני העתקה"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "הוספת ערך AUTO_INCREMENT (מספור אוטומטי)"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "הוספת הגבלות"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "מעבר למאגר נתונים שהועתק"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "מעבר למאגר נתונים שהועתק"
msgid "Collation"
msgstr "קידוד"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,7 +353,7 @@ msgid ""
msgstr ""
"תכונות נוספות לעבודה עם טבלאות מקושרות בוטלו. לעוד מידע למה לחץ %sכאן%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -507,102 +506,102 @@ msgstr ""
msgid "Submit Query"
msgstr "שליחת שאילתה"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "שאילתת SQL שלך בוצעה בהצלחה"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
msgid "Execution results of routine %s"
msgstr "מאפשר יצירת שגרות מאוחסנות."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL החזיר חבילת תוצאות ריקה (לדוגמא, אפס שורות)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL אמר: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "תהליכים"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "לא נמצאו טבלאות במאגר נתונים."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "טבלה %s נמחקה"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "טבלה %s נמחקה"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "גרסת שרת"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -738,8 +737,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -807,8 +806,8 @@ msgstr "תצוגת הדפסה"
msgid "Empty"
msgstr "ריקון"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -886,9 +885,9 @@ msgstr ""
msgid "Status"
msgstr "מצב"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -984,8 +983,8 @@ msgstr "הוצאה נשמרה אל קובץ %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1162,11 +1161,11 @@ msgstr "הסרת משתמשים שנבחרו"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "עריכה"
@@ -1791,6 +1790,215 @@ msgstr "בשימוש"
msgid "Second"
msgstr "לשנייה"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "יכול להיות הערכה. ראה FAQ 3.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "אין אינדקסים מוגדרים!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "אינדקסים"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "ייחודי"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "מספור"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "הערות"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "המפתח הראשי הוסר"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "אינדקס %s הוסר"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "מאגרי נתונים"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "שגיאה"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "לא נבחרו שורות"
+msgstr[1] "לא נבחרו שורות"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "לא נבחרו שורות"
+msgstr[1] "לא נבחרו שורות"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "אין טבלאות"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "אין מידע מצב מפורט על מנוע אחסון זה."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s זמין על שרת MySQL זה."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s מובטל על שרת MySQL זה."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "שרת MySQL לא תומך במנוע אחסון %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "טבלה %s שונתה אל %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "קח זאת"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "חיבור נכשל: הגדרות לא תקינות."
@@ -1804,8 +2012,8 @@ msgstr "ברוך הבא אל %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1909,14 +2117,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "קידוד חיבור MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "שגיאה"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1969,11 +2169,6 @@ msgstr "טבלאות"
msgid "Data"
msgstr "נתונים"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "אינדקסים"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2255,8 +2450,83 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "מבנה"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "מבנה ומידע"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "השלם הכנסות"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "הכנסות מורחבות"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2927,12 +3197,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "מאגרי נתונים"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4466,85 +4730,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "מבנה"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "מבנה ומידע"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "השלם הכנסות"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "הכנסות מורחבות"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4612,23 +4797,6 @@ msgstr ""
msgid "Add an event"
msgstr "הוספת משתמש חדש"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "השרת אינו מגיב"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4701,9 +4869,9 @@ msgstr "אורך/ערכים*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4763,12 +4931,6 @@ msgstr "סוג שאילתה"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "הערות"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4829,6 +4991,23 @@ msgid ""
"3.11[/a]"
msgstr "יכול להיות הערכה. ראה FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "השרת אינו מגיב"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4992,8 +5171,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5720,8 +5899,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6036,43 +6215,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "יכול להיות הערכה. ראה FAQ 3.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6090,6 +6232,41 @@ msgstr "תוצאת SQL"
msgid "Generated by"
msgstr "נוצר ע\"י"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "אין מאגרי נתונים"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6151,41 +6328,6 @@ msgstr "שמות עמודה"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "אין מאגרי נתונים"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6210,40 +6352,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "אין אינדקסים מוגדרים!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "ייחודי"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "מספור"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "המפתח הראשי הוסר"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "אינדקס %s הוסר"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6256,29 +6364,6 @@ msgstr "ללא"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "לא נבחרו שורות"
-msgstr[1] "לא נבחרו שורות"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "לא נבחרו שורות"
-msgstr[1] "לא נבחרו שורות"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6523,19 +6608,6 @@ msgstr ""
msgid "This format has no options"
msgstr "לתבנית זאת אין אפשרויות"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "אין טבלאות"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "לא בסדר"
@@ -6924,57 +6996,6 @@ msgstr ""
msgid "Target database"
msgstr "חפש במסד הנתונים"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "התחלת חיתוך"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr "END CUT"
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "התחלת RAW"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr "END RAW"
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -7034,6 +7055,57 @@ msgstr "מיקום של קובץ טקסט"
msgid "web server upload directory"
msgstr "שמירת שרת בתוך תיקיית %s"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "התחלת חיתוך"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr "END CUT"
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "התחלת RAW"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr "END RAW"
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7041,48 +7113,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "אין מידע מצב מפורט על מנוע אחסון זה."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s זמין על שרת MySQL זה."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s מובטל על שרת MySQL זה."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "שרת MySQL לא תומך במנוע אחסון %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "טבלה %s שונתה אל %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7211,38 +7241,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "הוספת משתמש חדש"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "קח זאת"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8266,8 +8264,8 @@ msgstr "הסרת מאגרי נתונים שיש להם שמות דומים כמ
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"הערה: phpMyAdmin מקבל הרשאות משתמש ישירות מטבלאות הרשאות של MySQL. התוכן של "
"הטבלאות האלו יכול להיות שונה מההרשאות שהשרת משתמש בהן, אם הן שונו באופן "
diff --git a/po/hi.po b/po/hi.po
index 36df257729..bcb38d95cd 100644
--- a/po/hi.po
+++ b/po/hi.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-05-06 09:13+0200\n"
"Last-Translator: \n"
"Language-Team: hindi \n"
+"Language: hi\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hi\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "खोजें"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "खोजें"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "आगे"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%1$s डेटाबेस बनाया गया है."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "डाटाबेस टिप्पणि: "
@@ -131,9 +131,9 @@ msgstr "डाटाबेस टिप्पणि: "
msgid "Table comments"
msgstr " टेबल टिप्पणि:"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr " टेबल टिप्पणि:"
msgid "Column"
msgstr "कोलम"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "कोलम"
msgid "Type"
msgstr "टाइप"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "के लिए लिंक"
msgid "Comments"
msgstr "टिप्पणी"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "टिप्पणी"
msgid "No"
msgstr "नहीं"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,79 +260,79 @@ msgstr "सभी को रद्द करें"
msgid "The database name is empty!"
msgstr "डेटाबेस नाम खाली है"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr " डेटाबेस का नाम %s बदल कर %s रखा गया है"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr " डेटाबेस %s से %s में कॉपी किया गया है"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "डेटाबेस का नाम बदल कर ____ रखें"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "आदेश"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "डेटाबेस को हटा दे"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "डाटाबेस %s को ड्रोप कर दिया ।"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "ड्रॉप डेटाबेस (छोड़ें)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "डेटाबेस को ______ में कॉपी करें"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "केवल संरचना"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "संरचना और डाटा"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "केवल डाटा"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "डेटाबेस कॉपी करने से पहले डेटाबेस का निर्माण करें"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s जोडें"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT मूल्य जोडें"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "शर्तें जोडें"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "नक़ल किये गए डाटाबेस पर जायें"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -342,16 +341,16 @@ msgstr "नक़ल किये गए डाटाबेस पर जाय
msgid "Collation"
msgstr "क्रम में करें"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए %"
-"shere%s पर क्लिक करें."
+"phpMyAdmin विन्यास भंडारण को निष्क्रिय किया गया हैक्यों ये किया गया है, जानने के लिए "
+"%shere%s पर क्लिक करें."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "संबंधपरक स्कीमा को संपादित या निर्यात करें "
@@ -497,110 +496,110 @@ msgstr "डेटाबेस %s पर SQL क्वरी:"
msgid "Submit Query"
msgstr "क्वरी प्रस्तुत करें"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "आपकी SQL कुएरी सफलता के साथ पूरी की गई है."
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "संग्रहीत दिनचर्या को क्रियान्वित करने की अनुमति देता है"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ने एक खाली परिणाम सेट लोताया"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "निम्नलिखित क्वरीों क्रियान्वित किया गया है"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL ने कहा: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "याचिका प्रसंस्करणमें त्रुटि"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "डाटाबेस में कोई टेबल नहीं।"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "निर्यात डिफ़ॉल्ट"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "अवैध सर्वर सूचकांक: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr " टेबल %s को रद्द किया गया है."
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "%1$s टेबल बना दिया गया है"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "संबंध बनायें"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "संपादन मोड"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -730,8 +729,8 @@ msgstr "ट्रैकिंग सक्रिय नहीं है."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "इस द्रश्य में कम से कम इतनी रो हैं. और जानने के लिए %s दोक्युमेंताशन%s पढ़ें."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -798,8 +797,8 @@ msgstr "छापने वाला द्रश्य."
msgid "Empty"
msgstr "खाली करें"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -878,9 +877,9 @@ msgstr "अद्यतन"
msgid "Status"
msgstr "स्थिति"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +972,8 @@ msgstr "डंप को %s फाइल में सेव किया गय
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"आप शायद बहुत बड़ी फाइल अपलोड करने की कोशिश कर रहे हैं. इस दुविधा के लिए कृपया करके %s "
"दोकुमेंताशन%s पढ़ें."
@@ -1156,11 +1155,11 @@ msgstr "चयनित यूसर को हटायें"
msgid "Close"
msgstr "बंद"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "सम्पादन"
@@ -1712,6 +1711,218 @@ msgstr "मिनट"
msgid "Second"
msgstr "सेकंड"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "फ़ॉन्ट का आकार"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "एक अस्थायी फ़ोल्डर गुम है."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "डिस्क में फ़ाइल लिखने में असफल"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
+"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "परिभाषित सूचकांक नहीं पाए गए!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "सूचकांक"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "अद्वितीय"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "जमा"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "प्रमुखता"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "टिप्पणी"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "प्राथमिक कुंजी गिरा दी गयी है"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "सूचकांक %s गिरा दिया गया है"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr " डाटाबेस"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "त्रुटि"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "एकवचन %1$d रोव प्रभावित"
+msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "एकवचन%1$d रोव नष्ट"
+msgstr[1] "बहुवचन%1$d रोवस नष्ट"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "एकवचन%1$d रोव डाला"
+msgstr[1] "बहुवचन%1$d रोवस डाला"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "विन्यास सहेज नहीं सकते"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "टेबल गणना"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s इस MySQL सर्वर पर उपलब्ध है."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "अमान्य डेटाबेस"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "अवैध टेबल नाम"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "पूर्वावलोकन उपलब्ध नहीं."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "इसे ले लो"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "विषयवस्तु %s नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "अमान्य सेटिंग्स: कनेक्ट नहीं कर सकते हैं"
@@ -1725,11 +1936,11 @@ msgstr " %s मे स्वागत है"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script%2"
-"$s का उपयोग करें."
+"आपने शायद एक विन्यास फाइल नहीं बने थी. विन्यास फाइल बनाने के लिए %1$ssetup script"
+"%2$s का उपयोग करें."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1832,14 +2043,6 @@ msgstr "PBMS त्रुटि"
msgid "PBMS connection failed:"
msgstr "PBMS कनेक्शन विफल"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "त्रुटि"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS प्राप्त जानकारी BLOB विफल"
@@ -1892,11 +2095,6 @@ msgstr "टेबल"
msgid "Data"
msgstr "डाटा"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "सूचकांक"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2176,9 +2374,79 @@ msgstr "अपलोड करने के लिए फाइल उपलब
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "फ़ॉन्ट का आकार"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "दोनों"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "ऊँचाई"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "खोले"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "बंद"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "संरचना"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "डेटा"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "संरचना और डेटा"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "पूरा इनसर्टस"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "विस्तृत इनसर्टस"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ऊपर के दोनों"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "उपरोक्त में से कोई भी नहीं"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2823,12 +3091,6 @@ msgstr "आयात और निर्यात निर्देशिका
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr " डाटाबेस"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "डेटाबेस प्रदर्शन विकल्प"
@@ -4354,80 +4616,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "गलत IP पता: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "दोनों"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "ऊँचाई"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "खोले"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "बंद"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "संरचना"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "डेटा"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "संरचना और डेटा"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "जल्दी - कॉन्फ़िगर करने के लिए केवल न्यूनतम विकल्पों को प्रदर्शित करें"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "कस्टम - कॉन्फ़िगर करने के लिए सभी विकल्पों को प्रदर्शित करें"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "कस्टम - उपरोक्त की तरह लेकिन जल्दी / कस्टम विकल्प के बिना"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "पूरा इनसर्टस"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "विस्तृत इनसर्टस"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ऊपर के दोनों"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "उपरोक्त में से कोई भी नहीं"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4498,23 +4686,6 @@ msgstr ""
msgid "Add an event"
msgstr "एक नया सर्वर जोडें"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "सर्वर जवाब नहीं दे रहा"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "विवरण..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4589,9 +4760,9 @@ msgstr "लंबाई/अर्थ*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4650,11 +4821,6 @@ msgstr "सुरक्षा"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "टिप्पणी"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4720,6 +4886,23 @@ msgid ""
msgstr ""
"शायद अनुमानित हैं. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a] देखें"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "सर्वर जवाब नहीं दे रहा"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "विवरण..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4860,8 +5043,8 @@ msgstr ", @टेबल@ टेबल का नाम बन जायेगा
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5567,8 +5750,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5871,44 +6054,6 @@ msgstr "दृश्य"
msgid "Export contents"
msgstr "निर्यात सामग्री"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "अपलोड की गई फ़ाइल php.ini में upload_max_filesize निर्देश से अधिक है."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "अपलोड की गई फ़ाइल, HTML के रूप में निर्दिष्ट MAX_FILE_SIZE की सीमा से अधिक है."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "अपलोड की गई फ़ाइल केवल आंशिक रूप से अपलोड की गयी है."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "एक अस्थायी फ़ोल्डर गुम है."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "डिस्क में फ़ाइल लिखने में असफल"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "फ़ाइल एक्सटेंशन द्वारा अपलोड रोका गया है."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "फ़ाइल अपलोड करने में अज्ञात त्रुटि."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"अपलोड की गयी फाइल की जगह बदलने में त्रुटि आई है. [a@. \"Documentation.html # "
-"faq1_1 @ प्रलेखन] अकसर किये गए सवाल 1,11 [/ a] देखें."
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5928,6 +6073,40 @@ msgstr "SQLपरिणाम"
msgid "Generated by"
msgstr "द्वारा उत्पन्न"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "डेटाबेस पर जायें"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "सेटिंग्स"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "टेबल पर जायें"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "दृश्य पर जायें"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5989,40 +6168,6 @@ msgstr "कोलम के नाम"
msgid "This plugin does not support compressed imports!"
msgstr "यह प्लगइन संकुचित आयात का समर्थन नहीं करता"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "निम्नलिखित संरचनाओं या तो बनाया गया है या बदल दिया| यहाँ पर आप:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "संरचना की सामग्री को नाम पर क्लिक करके देखें"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "सेटिंग्स को बदलने के लिए \"विकल्प\" लिंक पर क्लिक करें"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "इसकी संरचना को संपादित करने के लिए \"संरचना\" लिंक पर क्लिक करें"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "डेटाबेस पर जायें"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "सेटिंग्स"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "टेबल पर जायें"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "दृश्य पर जायें"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "प्रतिशत को उचित दशमलव के रूप में आयात करें"
@@ -6045,40 +6190,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "परिभाषित सूचकांक नहीं पाए गए!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "अद्वितीय"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "जमा"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "प्रमुखता"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "प्राथमिक कुंजी गिरा दी गयी है"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "सूचकांक %s गिरा दिया गया है"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "सूचकांक %1s और %2s बराबर लगने के कारन उनमें से संभवतः हटाया जा सकता है."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "No"
@@ -6091,27 +6202,6 @@ msgstr "कोई एन्कोडिंग नहीं"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "एकवचन %1$d रोव प्रभावित"
-msgstr[1] "बहुवचन%1$d रोवस प्रभावित"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "एकवचन%1$d रोव नष्ट"
-msgstr[1] "बहुवचन%1$d रोवस नष्ट"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "एकवचन%1$d रोव डाला"
-msgstr[1] "बहुवचन%1$d रोवस डाला"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6354,24 +6444,6 @@ msgstr "नेविगेशन फ्रेम पुनः लोड"
msgid "This format has no options"
msgstr "इस प्रारूप के कोई विकल्प नहीं है"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "विन्यास सहेज नहीं सकते"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "टेबल गणना"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "कोई कॉन्फ़िगर सर्वर मौजूद नहीं है"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ठीक नहीं है"
@@ -6758,57 +6830,6 @@ msgstr "अंतर"
msgid "Target database"
msgstr "लक्ष्य डेटाबेस"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr "BEGIN कट"
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr "BEGIN रॉ"
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr "अवैध पहचानकर्ता"
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr "अज्ञात विराम स्ट्रिंग"
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6866,6 +6887,57 @@ msgstr "पाठ फ़ाइल का स्थान"
msgid "web server upload directory"
msgstr "वेब सर्वर अपलोड निर्देशिका"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr "BEGIN कट"
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr "BEGIN रॉ"
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr "अवैध पहचानकर्ता"
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr "अज्ञात विराम स्ट्रिंग"
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6873,48 +6945,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "इस भंडारण इंजन स्थिति के लिए कोई विस्तृत जानकारी उपलब्ध नहीं है."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s इस MySQL सर्वर पर उपलब्ध है."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s इस MySQL सर्वर के लिए निष्क्रिय कर दिया गया है."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "यह MySQL सर्वर %s भंडारण इंजन का समर्थन नहीं करता है."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "अमान्य डेटाबेस"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "अवैध टेबल नाम"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "टेबल का नाम %1$s से %2$s में बदलने में त्रुटि."
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "टेबल %s का नाम बदल कर %s रखा गया है."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "टेबल खली लग रही है"
@@ -7026,38 +7056,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "नयी वलुए जोडें"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "विषय %s के लिए कोई वैध छवि पथ नहीं पाया है!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "पूर्वावलोकन उपलब्ध नहीं."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "इसे ले लो"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "डिफ़ॉल्ट विषयवस्तु %s नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "विषयवस्तु %s नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "विषय %s के लिए थीम पथ नहीं मिला है!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8059,8 +8057,8 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/hr.po b/po/hr.po
index c97986b616..bc2561bf59 100644
--- a/po/hr.po
+++ b/po/hr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-21 14:54+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: croatian \n"
+"Language: hr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.1\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Traži"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Traži"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza podataka %1$s uspješno je izrađena."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze podataka: "
@@ -133,9 +133,9 @@ msgstr "Komentar baze podataka: "
msgid "Table comments"
msgstr "Komentari tablice"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Komentari tablice"
msgid "Column"
msgstr "Nazivi stupaca"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Nazivi stupaca"
msgid "Type"
msgstr "Vrsta"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,13 +201,12 @@ msgstr "Povezano s"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +217,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,82 +264,82 @@ msgstr "Ukloni sav odabir"
msgid "The database name is empty!"
msgstr "Naziv baze podataka je prazan!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Baza podataka %s preimenovana je u %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Baza podataka %s kopirana je u %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj bazu podataka u"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Preimenuj bazu podataka u"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza podataka %s je odbačena."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nema baza podataka"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj bazu podataka u"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo strukturu"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Strukturu i podatke"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podatke"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Prije kopiranja izradi bazu podataka (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj vrijednost AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Dodaj prisile"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu podataka"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -349,7 +348,7 @@ msgstr "Prebaci se na kopiranu bazu podataka"
msgid "Collation"
msgstr "Uspoređivanje"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -361,7 +360,7 @@ msgstr ""
"Dodatne osobine za rad s relacijski tablicama su isključene. Kako biste "
"saznali razloge, pritisnite %sovdje%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -514,14 +513,14 @@ msgstr "SQL upit nad bazom podataka %s:"
msgid "Submit Query"
msgstr "Podnesi upit"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit uspješno je izvršen"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -529,93 +528,93 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dopušta pokretanje pohranjenih rutina."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan komplet rezultata (npr. nula redova)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL je poručio: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procesi"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "U bazi podataka nisu pronađene tablice."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Uvezi datoteke"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Neispravan indeks poslužitelja: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tablica %s je odbačen"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tablica %1$s je izrađena."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Izradi relaciju"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
msgid "Edit routine"
msgstr "Web poslužitelj"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -752,8 +751,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ovaj prikaz sadrži najmanje ovoliko redaka. Proučite %sdokumentaciju%s."
@@ -821,8 +820,8 @@ msgstr "Prikaz ispisa"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -903,9 +902,9 @@ msgstr ""
msgid "Status"
msgstr "Stanje"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1004,11 +1003,11 @@ msgstr "Izbacivanje je spremljeno u datoteku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte %"
-"sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
+"Vjerojatno ste pokušali s učitavanjem prevelike datoteke. Pogledajte "
+"%sdokumentaciju%s radi uputa o načinima rješavanja ovog ograničenja."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1200,11 +1199,11 @@ msgstr "Ukloni odabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uređivanje"
@@ -1832,6 +1831,222 @@ msgstr "u upotrebi"
msgid "Second"
msgstr "po sekundi"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veličina fonta"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
+"datoteke) u datoteci php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
+"određenu u HTML obliku."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Učitana datoteka bila je djelomično učitana."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nedostaje mapa privremene pohrane."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Zapisivanje datoteke na disk nije uspjelo."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nema definiranog indeksa!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveno"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakirano"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Najvažnije"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je odbačen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s je odbačen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze podataka"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Pogreška"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Zahvaćeno redaka: %1$d."
+msgstr[1] "Zahvaćeno redaka: %1$d."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Izbrisano redaka: %1$d."
+msgstr[1] "Izbrisano redaka: %1$d."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Umetnuto redaka: %1$d."
+msgstr[1] "Umetnuto redaka: %1$d."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tablica"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Provjeri tablicu"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je raspoloživ na ovom MySQL poslužitelju."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neispravna baza podataka"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neispravan naziv tablice"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tablica %s preimenovana je u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Valjana putanja slika za temu %s nije pronađena!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nema raspoloživog pregleda."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Dodijeli"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Zadana tema %s nije pronađena!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nije pronađena!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Za temu %s nije pronađena putanje tema!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Povezivanje nije moguće: neispravna postavka."
@@ -1845,8 +2060,8 @@ msgstr "Dobro došli u %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Vjerojatan razlog je nepostojeća konfiguracijska datoteka. Za izradu možete "
"upotrijebiti naredbu %1$ssetup script%2$s"
@@ -1953,14 +2168,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL uspoređivanje veza"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Pogreška"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2013,11 +2220,6 @@ msgstr "Tablice"
msgid "Data"
msgstr "Podaci"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2308,9 +2510,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veličina fonta"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Strukturu"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Strukturu i podatke"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Dovrši umetanja"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Proširena umetanja"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2984,12 +3263,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze podataka"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4544,87 +4817,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Strukturu"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Strukturu i podatke"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Dovrši umetanja"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Proširena umetanja"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4691,26 +4883,6 @@ msgstr ""
msgid "Add an event"
msgstr "Dodaj novog korisnika"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
-"konfiguraciji nije uspjelo."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Poslužitelj ne odgovara"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalji..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4785,9 +4957,9 @@ msgstr "Duljina/Vrijednosti"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4844,11 +5016,6 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4912,6 +5079,26 @@ msgid ""
"3.11[/a]"
msgstr "Može biti približno. Pogledajte ČPP 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Povezivanje kontrolnih korisnika na način kako je definirano u vašoj "
+"konfiguraciji nije uspjelo."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Poslužitelj ne odgovara"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ili priključak lokalnog MySQL poslužitelja nije ispravno konfiguriran)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalji..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5080,8 +5267,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrijednost se interpretira pomoću %1$sstrftime%2$s, pa možete upotrijebiti "
"naredbe oblikovanja vremena. Dodatno se mogu dogoditi sljedeća "
@@ -5886,8 +6073,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6201,46 +6388,6 @@ msgstr "Prikaz"
msgid "Export contents"
msgstr "Vrsta izvoza"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Učitana datoteka nadmašuje uputu upload_max_filesize (najveća veličina "
-"datoteke) u datoteci php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Učitana datoteka nadmašuje uputu MAX_FILE_SIZE (najveća veličina datoteke), "
-"određenu u HTML obliku."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Učitana datoteka bila je djelomično učitana."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nedostaje mapa privremene pohrane."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Zapisivanje datoteke na disk nije uspjelo."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Učitavanje datoteke prekinuto je uslijed ekstenzije."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nepoznata pogreška tijekom učitavanja datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Pogreška tijekom premještanja učitane datoteke. Pogledajte ČPP 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6258,6 +6405,42 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generirano s"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nema baza podataka"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Nema baza podataka"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6320,42 +6503,6 @@ msgstr "Nazivi stupaca"
msgid "This plugin does not support compressed imports!"
msgstr "Ovaj dodatak ne podržava uvoz komprimiranih datoteka!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nema baza podataka"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Nema baza podataka"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6380,41 +6527,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nema definiranog indeksa!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveno"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakirano"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Najvažnije"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je odbačen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s je odbačen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksi %1$s i %2$s izgledaju jednakim i jednog od njih moguće je ukloniti."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6427,30 +6539,6 @@ msgstr "bez kompresije"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Zahvaćeno redaka: %1$d."
-msgstr[1] "Zahvaćeno redaka: %1$d."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Izbrisano redaka: %1$d."
-msgstr[1] "Izbrisano redaka: %1$d."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Umetnuto redaka: %1$d."
-msgstr[1] "Umetnuto redaka: %1$d."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6693,22 +6781,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Ovaj oblik nema raspoložive opcije"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Nije moguće učitati zadanu konfiguraciju iz: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tablica"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Provjeri tablicu"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije OK"
@@ -7102,6 +7174,64 @@ msgstr ""
msgid "Target database"
msgstr "Traži u bazi podataka"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Pokreni SQL upit na poslužitelju %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Pokreni SQL upit na bazi podataka %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazivi stupaca"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Favoriziraj ovaj SQL upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Neka svi korisnici imaju pristup ovom favoritu"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamijeni postojećim favoritom istog naziva"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit iz vanjskog prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Razgraničavanje"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ovaj upit ponovno prikaži ovdje"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Samo prikaz"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "mapa učitavanja web poslužitelja"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7164,64 +7294,6 @@ msgstr "Neispravna ID oznaka"
msgid "Unknown Punctuation String"
msgstr "Nepoznat niz interpunkcija"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Pokreni SQL upit na poslužitelju %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Pokreni SQL upit na bazi podataka %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazivi stupaca"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Favoriziraj ovaj SQL upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Neka svi korisnici imaju pristup ovom favoritu"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamijeni postojećim favoritom istog naziva"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit iz vanjskog prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Razgraničavanje"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ovaj upit ponovno prikaži ovdje"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Samo prikaz"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "mapa učitavanja web poslužitelja"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7231,48 +7303,6 @@ msgstr ""
"SQL validator nije bilo moguće pokrenuti. Provjerite jeste li instalirali "
"potrebna PHP proširenja, na način opisan u %sdokumentaciji%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Za ovaj pogon pohranjivanje ne postoje raspoloživi podaci."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je raspoloživ na ovom MySQL poslužitelju."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogućen za ovaj MySQL poslužitelj."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ovaj MySQL poslužitelj ne podržava pogon pohranjivanja %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neispravna baza podataka"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neispravan naziv tablice"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Pogreška tijekom preimenovanja tablice %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tablica %s preimenovana je u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tablica izgleda praznom!"
@@ -7403,38 +7433,6 @@ msgstr "Definicija PARTICIJE"
msgid "+ Add a value"
msgstr "Dodaj novog korisnika"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Valjana putanja slika za temu %s nije pronađena!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nema raspoloživog pregleda."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Dodijeli"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Zadana tema %s nije pronađena!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nije pronađena!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Za temu %s nije pronađena putanje tema!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8562,8 +8560,8 @@ msgstr "Ispusti baze podataka koje imaju iste nazive i korisnike."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin preuzima korisničke privilegije izravno iz MySQL "
"tablica privilegija. U slučaju da su ručno mijenjane, sadržaj ovih tablica "
@@ -11133,8 +11131,8 @@ msgstr "Preimenuj prikaz u"
#~ "Cannot load [a@http://php.net/%1$s@Documentation][em]%1$s[/em][/a] "
#~ "extension. Please check your PHP configuration."
#~ msgstr ""
-#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation][em]%1"
-#~ "$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
+#~ "Nije moguće učitati proširenje [a@http://php.net/%1$s@Documentation]"
+#~ "[em]%1$s[/em][/a] . Provjerite svoju PHP konfiguraciju."
#~ msgid ""
#~ "Couldn't load the iconv or recode extension needed for charset "
diff --git a/po/hu.po b/po/hu.po
index 55eb9a3ae0..1178ed6472 100644
--- a/po/hu.po
+++ b/po/hu.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-05-27 18:52+0200\n"
"Last-Translator: \n"
"Language-Team: hungarian \n"
+"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: hu\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Keresés"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Keresés"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Indítás"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "A(z) %1$s adatbázis elkészült."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Megjegyzés az adatbázishoz: "
@@ -132,9 +132,9 @@ msgstr "Megjegyzés az adatbázishoz: "
msgid "Table comments"
msgstr "Tábla megjegyzése"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tábla megjegyzése"
msgid "Column"
msgstr "Oszlop"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Oszlop"
msgid "Type"
msgstr "Típus"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Hivatkozások:"
msgid "Comments"
msgstr "Megjegyzések"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Megjegyzések"
msgid "No"
msgstr "Nem"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Mind törlése"
msgid "The database name is empty!"
msgstr "Üres az adatbázis neve!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "A(z) %s adatbázis átnevezése %s névre megtörtént"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "A(z) %s adatbázis másolása a(z) %s adatbázisba megtörtént"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Adatbázis átnevezése"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Parancs"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Adatbázis eltávolítása"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "A(z) %s adatbázis eldobása megtörtént."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Adatbázis eldobása (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Adatbázis másolása"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Csak a szerkezet"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Szerkezet és adatok"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Csak az adatok"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE másolás előtt"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s hozzáadása"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT érték hozzáadása"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Megszorítás hozzáadása"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "A másolt adatbázisra váltás"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "A másolt adatbázisra váltás"
msgid "Collation"
msgstr "Illesztés"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"A phpMyAdmin konfigurációs tárolója deaktiválva lett. Ha szeretné megtudni, "
"hogy miért, kattintson %side%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Kapcsolati séma szerkesztése, exportálása"
@@ -498,109 +497,109 @@ msgstr "SQL-lekérdezés a(z) %s adatbázison:"
msgid "Submit Query"
msgstr "Lekérdezés indítása"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Az SQL-lekérdezés végrehajtása sikerült"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Engedélyezi a tárolt eljárások végrehajtását."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "A MySQL üres eredményhalmazt adott vissza (pl. nulla sorok)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "A MySQL mondta: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Hiba a kérés feldolgozásában"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Nem található tábla az adatbázisban."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Exportálás alapértelmezései"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Érvénytelen szerverindex: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "A(z) %s oszlop eldobása megtörtént"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "A(z) %1$s tábla elkészült."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Kapcsolat létrehozása"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Szerkesztő mód"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -730,11 +729,11 @@ msgstr "Nyomkövetés inaktív."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a %"
-"sdokumentációban%s."
+"Ebben a nézetben legalább ennyi számú sor van. Kérjük, hogy nézzen utána a "
+"%sdokumentációban%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -800,8 +799,8 @@ msgstr "Nyomtatási nézet"
msgid "Empty"
msgstr "Kiürítés"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -874,9 +873,9 @@ msgstr "frissítve"
msgid "Status"
msgstr "Állapot"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -971,11 +970,11 @@ msgstr "A kiíratás mentése a(z) %s fájlba megtörtént."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a %"
-"sdokumentációban%s a korlátozás feloldása végett."
+"Ön bizonyára túl nagy fájlt próbált meg feltölteni. Kérjük, nézzen utána a "
+"%sdokumentációban%s a korlátozás feloldása végett."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1159,11 +1158,11 @@ msgstr "A kijelölt felhasználók törlése"
msgid "Close"
msgstr "Bezárás"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Módosítás"
@@ -1717,6 +1716,223 @@ msgstr "Perc"
msgid "Second"
msgstr "másodperc"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Betűméret"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
+"upload_max_filesize utasítást."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
+"utasítást."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "A feltöltött fájl csak részben került feltöltésre."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Hiányzik egy ideiglenes mappa."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nem sikerült lemezre írni a fájlt."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ismeretlen hiba a fájlfeltöltésben."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nincs meghatározott index!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexek"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Egyedi"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Csomagolt"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Számosság"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Megjegyzés"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Az elsődleges kulcs eldobása megtörtént"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "A(z) %s index eldobása megtörtént"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg "
+"eltávolítható."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Adatbázisok"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Hiba"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d sor érintett."
+msgstr[1] "%1$d sor érintett."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "A(z) %1$d sor törlése megtörtént."
+msgstr[1] "A(z) %1$d sor törlése megtörtént."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
+msgstr[1] "A(z) %1$d sor beszúrása megtörtént."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "A beállítások nem tölthetők be vagy menthetők"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Táblák megszámolása"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nincsenek konfigurált szerverek"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "A(z) %s motor elérhető ezen a MySQL szerveren."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s letiltott ezen a MySQL szerveren."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Érvénytelen adatbázis"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Érvénytelen táblanév"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nincs előnézet."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "csináld"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "A(z) %s alapértelmezett téma nem található!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nem található a(z) %s téma!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nem található a(z) %s téma téma elérési útja!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nem lehet csatlakozni: érvénytelenek a beállítások."
@@ -1730,11 +1946,11 @@ msgstr "Üdvözli a %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A %1"
-"$stelepítőszkripttel%2$s el tudja készíteni."
+"Ön valószínűleg nem hozta létre a konfigurációs fájlt. A "
+"%1$stelepítőszkripttel%2$s el tudja készíteni."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1840,14 +2056,6 @@ msgstr "PBMS hiba"
msgid "PBMS connection failed:"
msgstr "PBMS kapcsolat sikertelen."
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Hiba"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB infó beszerzése sikertelen:"
@@ -1900,11 +2108,6 @@ msgstr "Táblák"
msgid "Data"
msgstr "Adatok"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexek"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2186,9 +2389,79 @@ msgstr "Nincsenek feltöltendő fájlok"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Betűméret"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Mind"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Magasság"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Nyitott"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zárt"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "szerkezet"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "adat"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "szerkezet és adatok"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Egyéni - az összes beállítási lehetőségeket mutatja"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "teljes beillesztések"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "kiterjesztett beillesztések"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "a fentiekből mindkettő"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "a fentiekből egyik sem"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2850,12 +3123,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Adatbázisok"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Az adatbázisok megjelenítésének beállításai"
@@ -4507,80 +4774,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "A következő IP-cím hibás: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Mind"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Magasság"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Nyitott"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zárt"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "szerkezet"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "adat"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "szerkezet és adatok"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Gyors - csak a minimális beállítási lehetőségeket mutatja"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Egyéni - az összes beállítási lehetőségeket mutatja"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Egyéni - mint fentebb, de gyors/egyéni választási lehetőség nélkül"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "teljes beillesztések"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "kiterjesztett beillesztések"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "a fentiekből mindkettő"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "a fentiekből egyik sem"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4649,27 +4842,6 @@ msgstr ""
msgid "Add an event"
msgstr "Új szerver hozzáadása"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem "
-"sikerült."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "A szerver nem válaszol"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(vagy nem megfelelően állították be a helyi MySQL szerver "
-"szoftvercsatornáját)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Részletek..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4744,9 +4916,9 @@ msgstr "Hossz/Érték*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4803,11 +4975,6 @@ msgstr "Biztonság"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Megjegyzés"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4872,6 +5039,27 @@ msgid ""
"3.11[/a]"
msgstr "Becsült érték lehet. Lásd: GYIK 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"A konfigurációban meghatározott kapcsolat a kontrollfelhasználó számára nem "
+"sikerült."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "A szerver nem válaszol"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(vagy nem megfelelően állították be a helyi MySQL szerver "
+"szoftvercsatornáját)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Részletek..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5016,8 +5204,8 @@ msgstr ", @TABLE@ lesz a tábla neve"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ennek az értéknek az értelmezése az %1$sstrftime%2$s használatával történik, "
"vagyis időformázó karakterláncokat használhat. A következő átalakításokra "
@@ -5810,8 +5998,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6128,46 +6316,6 @@ msgstr "Nézet"
msgid "Export contents"
msgstr "Exportálás alapértelmezései"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"A feltöltött fájl mérete túllépi a php.ini fájlban megadott "
-"upload_max_filesize utasítást."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"A feltöltött fájl mérete túllépi a HTML űrlapban megadott MAX_FILE_SIZE "
-"utasítást."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "A feltöltött fájl csak részben került feltöltésre."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Hiányzik egy ideiglenes mappa."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nem sikerült lemezre írni a fájlt."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "A fájlfeltöltés kiterjesztés alapján leállt."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ismeretlen hiba a fájlfeltöltésben."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Hiba történt a feltöltött fájl áthelyezésekor, lásd: GYIK 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6187,6 +6335,41 @@ msgstr "SQL-eredmény"
msgid "Generated by"
msgstr "Készítette"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nincs adatbázis"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6249,41 +6432,6 @@ msgstr "Oszlopnevek"
msgid "This plugin does not support compressed imports!"
msgstr "Ez a beépülő modul nem támogatja a tömörített importálásokat!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nincs adatbázis"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6310,42 +6458,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nincs meghatározott index!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Egyedi"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Csomagolt"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Számosság"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Az elsődleges kulcs eldobása megtörtént"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "A(z) %s index eldobása megtörtént"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"A(z) %1$s és a(z) %2$s egyenlőnek tűnik, és egyikük valószínűleg "
-"eltávolítható."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6358,27 +6470,6 @@ msgstr "Nincs"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d sor érintett."
-msgstr[1] "%1$d sor érintett."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "A(z) %1$d sor törlése megtörtént."
-msgstr[1] "A(z) %1$d sor törlése megtörtént."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "A(z) %1$d sor beszúrása megtörtént."
-msgstr[1] "A(z) %1$d sor beszúrása megtörtént."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6622,24 +6713,6 @@ msgstr "A navigációs keret testreszabása"
msgid "This format has no options"
msgstr "Ennek a formátumnak nincsenek beállításai"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "A beállítások nem tölthetők be vagy menthetők"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Táblák megszámolása"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nincsenek konfigurált szerverek"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Nincs rendben"
@@ -7036,6 +7109,65 @@ msgstr ""
msgid "Target database"
msgstr "Keresés az adatbázisban"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Törlés"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Oszlopnevek"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
+"engedélyezett"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Az ugyanazon nevű könyvjelző kicserélése"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Elválasztó"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " A fenti lekérdezés megjelenítése itt újra "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Csak megtekinthető"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "A szövegfájl helye"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webszerver feltöltési könyvtár"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7100,118 +7232,16 @@ msgstr "Érvénytelen azonosító"
msgid "Unknown Punctuation String"
msgstr "Ismeretlen írásjeleket tartalmazó karakterlánc"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "A(z) %s szerveren lefuttatandó SQL lekérdezés(ek)"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL lekérdezés(ek) futtatása a(z) %s adatbázison"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Törlés"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Oszlopnevek"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Az SQL-lekérdezés hozzáadása a könyvjelzőkhöz"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-"A hozzáférés ehhez a könyvjelzőhöz az összes felhasználó számára "
-"engedélyezett"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Az ugyanazon nevű könyvjelző kicserélése"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nem írja felül ezt a lekérdezést az ablakon kívülről"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Elválasztó"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " A fenti lekérdezés megjelenítése itt újra "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Csak megtekinthető"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "A szövegfájl helye"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webszerver feltöltési könyvtár"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a %"
-"sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
+"Nem lehetett inicializálni az SQL ellenőrzőt. Ellenőrizze, hogy a "
+"%sdokumentációban%s leírtak szerint telepítette-e a szükséges PHP-"
"kiterjesztést."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Erről a tárolómotorról részletes állapot-információ nem áll rendelkezésre."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "A(z) %s motor elérhető ezen a MySQL szerveren."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s letiltott ezen a MySQL szerveren."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ez a MySQL szerver nem támogatja a(z) %s tárolómotort."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Érvénytelen adatbázis"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Érvénytelen táblanév"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Hiba történt a(z) %1$s tábla %2$s névre történő átnevezésekor"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "A(z) %s tábla átnevezése %s névre megtörtént"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Üresnek tűnik a tábla!"
@@ -7343,38 +7373,6 @@ msgstr "PARTITION definíció"
msgid "+ Add a value"
msgstr "Új szerver hozzáadása"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nincs érvényes kép elérési útja a(z) %s témának!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nincs előnézet."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "csináld"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "A(z) %s alapértelmezett téma nem található!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nem található a(z) %s téma!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nem található a(z) %s téma téma elérési útja!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8532,13 +8530,13 @@ msgstr "A felhasználókéval azonos nevű adatbázisok eldobása."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Megjegyzés: a phpMyAdmin a felhasználók jogait közvetlenül a MySQL "
"privilégium táblákból veszi. Ezen táblák tartalma eltérhet a szerver által "
-"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben %"
-"stöltse be újra a jogokat%s a folytatás előtt."
+"használt jogoktól, ha a módosításuk kézzel történt. Ebben az esetben "
+"%stöltse be újra a jogokat%s a folytatás előtt."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10144,9 +10142,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/id.po b/po/id.po
index bf9e246e62..1a3510f016 100644
--- a/po/id.po
+++ b/po/id.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-18 11:34+0200\n"
"Last-Translator: \n"
"Language-Team: indonesian \n"
+"Language: id\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: id\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Go"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s telah dibuat."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar Database: "
@@ -132,9 +132,9 @@ msgstr "Komentar Database: "
msgid "Table comments"
msgstr "Komentar tabel"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentar tabel"
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kolom"
msgid "Type"
msgstr "Jenis"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Link ke"
msgid "Comments"
msgstr "Komentar"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Komentar"
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Unselect semua"
msgid "The database name is empty!"
msgstr "Nama database kosong!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Nama database %s telah diubah menjadi %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s telah disalin ke %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ubah nama database menjadi"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Perintah"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Hapus database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s telah dihapus."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Buang database (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Salin database ke"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Struktur saja"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur dan data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Data saja"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CIPTAKAN DATABASE sebelum menyalin"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Tambah %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Menambahkan nilai AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Menambahkan pembatas"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pindah ke database yang disalin"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Pindah ke database yang disalin"
msgid "Collation"
msgstr "Penyortiran"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Penyimpanan konfigurasi phpMyAdmin telah dinonaktifkan. Untuk mencari tahu "
"mengapa klik %sdisini%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edit atau ekspor skema relasional"
@@ -497,105 +496,105 @@ msgstr "Pencarian SQL dalam database %s:"
msgid "Submit Query"
msgstr "Jalankan Pencarian SQL"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Query SQL Anda berhasil dieksekusi"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Mengizinkan eksekusi Routines yang tersimpan."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL balikkan hasil kosong (a.k. baris yang kosong)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL menyatakan: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Error dalam memproses permintaan"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tidak ada tabel dalam database."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export contents"
msgid "Export of routine %s"
msgstr "Ekspor isi"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Indeks server tidak sah: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabel %s telah dihapus"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabel %s telah dihapus"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Buat relasi"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -723,11 +722,11 @@ msgstr "Pelacakan tidak aktif."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat %"
-"sdokumentasi%s"
+"Sebuah view setidaknya mempunyai jumlah kolom berikut. Silahkan lihat "
+"%sdokumentasi%s"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -793,8 +792,8 @@ msgstr "Pandangan cetak"
msgid "Empty"
msgstr "Mengosongkan"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -871,9 +870,9 @@ msgstr "Diperbarui"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -967,11 +966,11 @@ msgstr "Dump (Skema) disimpan pada file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat %"
-"sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
+"Anda mungkin meng-upload file yang terlalu besar. Silahkan lihat "
+"%sdokumentasi%s untuk mendapatkan solusi tentang batasan ini."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1151,11 +1150,11 @@ msgstr "Hapus pengguna yang dipilih"
msgid "Close"
msgstr "Tutup"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1692,6 +1691,220 @@ msgstr "Menit"
msgid "Second"
msgstr "Detik"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Ukuran huruf"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "File yang di upload hanya ter-upload sebagian."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Folder sementara tidak ditemukan."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Gagal menulis file ke diska."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Upload file dihentikan oleh ekstensi."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Kesalahan yang tidak diketahui dalam upload file."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 3.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks belum ditentukan!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Dipadatkan"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Bilangan Pokok"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kunci utama telah dihapus"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s telah dihapus"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan "
+"untuk dibuang."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Basisdata"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Error"
+
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d baris terpengaruh."
+
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d baris telah dihapus."
+
+# No difference between singular and plural in this case for Indonesian
+# language.
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d baris disisipkan."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Tabel terakhir"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Tidak ada tabel terakhir"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s siap untuk digunakan pada server MySQL ini."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s dimatikan untuk server MySQL ini."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Basisdata tidak valid"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nama tabel tidak valid"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Kesalahan mengganti nama table %1$s ke %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Nama tabel %s telah diubah menjadi %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Tidak dapat menyimpan preferensi UI tabel"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Tidak ada preview yang tersedia."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "ambil ini"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema %s bawaan tidak ditemukan!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s tidak ditemukan!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Koneksi gagal: setelan tidak berlaku."
@@ -1705,8 +1918,8 @@ msgstr "Selamat Datang di %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Anda mungkin belum membuat file konfigurasi. Anda bisa menggunakan %1$ssetup "
"script%2$s untuk membuatnya."
@@ -1815,14 +2028,6 @@ msgstr "Kesalahan PBMS"
msgid "PBMS connection failed:"
msgstr "Koneksi PBMS gagal:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Error"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1875,11 +2080,6 @@ msgstr "Tabel"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2160,9 +2360,77 @@ msgstr "Tidak ada arsip untuk diunggah"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Ukuran huruf"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Keduanya"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Tempat"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Kiri"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Kanan"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Buka"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Tutup"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur dan data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "INSERT lengkap"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "INSERT yang diperluas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "keduanya dari yang di atas"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "tidak keduanya dari yang di atas"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2837,12 +3105,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Basisdata"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4380,78 +4642,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Keduanya"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Tempat"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Kiri"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Kanan"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Buka"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Tutup"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur dan data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Cepat - hanya menampilkan opsi untuk konfigurasi"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Custom - menampilkan semua opsi yang mungkin untuk konfigurasi"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Custom - seperti di atas, namun tanpa pilihan cepat/custom"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "INSERT lengkap"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "INSERT yang diperluas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "keduanya dari yang di atas"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "tidak keduanya dari yang di atas"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4521,24 +4711,6 @@ msgstr ""
msgid "Add an event"
msgstr "Menambahkan pengguna baru"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server tidak menjawab"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Rincian..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4613,9 +4785,9 @@ msgstr "Ukuran Panjang/Nilai*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4673,11 +4845,6 @@ msgstr "Tipe Pencarian"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4742,6 +4909,24 @@ msgstr ""
"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
"html#faq3_11@Dokumentasi]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Koneksi untuk controluser yang di definisikan di konfigurasi Anda gagal."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server tidak menjawab"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(atau konfigurasi socket dari server MySQL tidak benar)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Rincian..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4907,8 +5092,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5661,8 +5846,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5982,46 +6167,6 @@ msgstr "Gambarkan"
msgid "Export contents"
msgstr "Ekspor isi"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"File yang di upload melewati ketentuan upload_max_filesize dalam php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"File yang di upload melewati MAX_FILE_SIZE yang ditentukan dalam form HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "File yang di upload hanya ter-upload sebagian."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Folder sementara tidak ditemukan."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Gagal menulis file ke diska."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Upload file dihentikan oleh ekstensi."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Kesalahan yang tidak diketahui dalam upload file."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Kemungkinan hanya perkiraan saja. Lihat [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 3.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6041,6 +6186,41 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Diciptakan oleh"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Database tidak ditemukan"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6102,41 +6282,6 @@ msgstr "Nama kolom"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Database tidak ditemukan"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6165,42 +6310,6 @@ msgstr ""
"File XML yang ditentukan cacat atau tidak lengkap. Mohon perbaiki dan coba "
"lagi."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks belum ditentukan!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Dipadatkan"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Bilangan Pokok"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kunci utama telah dihapus"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s telah dihapus"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Index %1$s dan %2$s sepertinya sama dan salah satu dari mereka memungkinkan "
-"untuk dibuang."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6213,30 +6322,6 @@ msgstr "tanpa"
msgid "Convert to Kana"
msgstr ""
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d baris terpengaruh."
-
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d baris telah dihapus."
-
-# No difference between singular and plural in this case for Indonesian
-# language.
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d baris disisipkan."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6479,18 +6564,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Format ini tidak ada pilihannya"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Tidak dapat menyimpan tabel terakhir: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Tabel terakhir"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Tidak ada tabel terakhir"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "tidak oke"
@@ -6880,6 +6953,64 @@ msgstr "Perbedaan"
msgid "Target database"
msgstr "Database target"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Melaksanakan perintah SQL pada database %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Melaksanakan perintah SQL pada database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalender"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nama kolom"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Simpan pencarian SQL ini"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Jangan timpahkan pencarian ini dari jendela luar"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Pembatas"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Tampilkan ulang perintah SQL "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Hanya melihat"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "dari File"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktori upload pada web-server"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6945,64 +7076,6 @@ msgstr "Identifer tidak valid"
msgid "Unknown Punctuation String"
msgstr "Punctation String tidak dikenali"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Melaksanakan perintah SQL pada database %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Melaksanakan perintah SQL pada database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalender"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nama kolom"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Simpan pencarian SQL ini"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Izinkan semua pengguna untuk mengakses simpanan ini"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Jangan timpahkan pencarian ini dari jendela luar"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Pembatas"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Tampilkan ulang perintah SQL "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Hanya melihat"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "dari File"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktori upload pada web-server"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7012,49 +7085,6 @@ msgstr ""
"Pengesahan SQL tidak dapat disahkan. Mohon periksa kembali ekstension PHP "
"yang diperlukan seperti yang tercatat dalam %sdokumentasi%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Informasi secara rinci tentang keadaan mesin penyimpan ini tidak ditemukan."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s siap untuk digunakan pada server MySQL ini."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s dimatikan untuk server MySQL ini."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Server MySQL ini tidak mendukung mesin penyimpan %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Basisdata tidak valid"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nama tabel tidak valid"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Kesalahan mengganti nama table %1$s ke %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Nama tabel %s telah diubah menjadi %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Tidak dapat menyimpan preferensi UI tabel"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7185,38 +7215,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Menambahkan pengguna baru"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Lokasi citra yang benar untuk tema %s tidak ditemukan!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Tidak ada preview yang tersedia."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "ambil ini"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema %s bawaan tidak ditemukan!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s tidak ditemukan!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "\"Path\" untuk tema tidak ditemukan untuk tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8331,8 +8329,8 @@ msgstr "Hapus database yang memiliki nama yang sama dengan pengguna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Perhatian: phpMyAdmin membaca data tentang pengguna secara langsung dari "
"tabel profil pengguna MySQL. Isi dari tabel bisa saja berbeda dengan profil "
diff --git a/po/it.po b/po/it.po
index 5e49249690..6f1eef1e6d 100644
--- a/po/it.po
+++ b/po/it.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-23 11:55+0200\n"
"Last-Translator: Rouslan Placella \n"
"Language-Team: italian \n"
+"Language: it\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: it\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Cerca"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Cerca"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Esegui"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Il database %1$s è stato creato."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Commento del database: "
@@ -133,9 +133,9 @@ msgstr "Commento del database: "
msgid "Table comments"
msgstr "Commenti alla tabella"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Commenti alla tabella"
msgid "Column"
msgstr "Campo"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Campo"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Collegamenti a"
msgid "Comments"
msgstr "Commenti"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Commenti"
msgid "No"
msgstr "No"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Deseleziona tutto"
msgid "The database name is empty!"
msgstr "Il nome del database è vuoto!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Il database %s è stato rinominato a %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Il database %s è stato copiato a %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rinomina il database a"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Comando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Rimuovi il database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Il database %s è stato eliminato."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Cancella il database (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copia il database a"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Solo struttura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struttura e dati"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Solo dati"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE prima di copiare"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Aggiungi %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Aggiungi valore AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Aggiungi vincoli"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Passa al database copiato"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Passa al database copiato"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +352,7 @@ msgstr ""
"Le opzioni di configurazione dello storage di phpMyAdmin sono state "
"disabilitate. Per scoprire la ragione, clicca %squi%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Modifica o esporta schema relazionale"
@@ -499,110 +498,110 @@ msgstr "SQL-query sul database %s:"
msgid "Submit Query"
msgstr "Invia Query"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "La query SQL è stata eseguita con successo"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Permette l'esecuzione di routines memorizzate."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ha restituito un insieme vuoto (i.e. zero righe)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Le seguenti query sono state eseguite:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Messaggio di MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Errore nel processare la richiesta"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Non ci sono tabelle nel database"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Esporta i predefiniti"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Indice server non valido: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Il campo %s è stato eliminato"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "La tabella %1$s è stata creata."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Crea relazioni"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Modalitá di modifica"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -732,8 +731,8 @@ msgstr "Il tracking non è attivo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Questa vista ha, come minimo, questo numero di righe. Per informazioni "
"controlla la %sdocumentazione%s."
@@ -802,8 +801,8 @@ msgstr "Visualizza per stampa"
msgid "Empty"
msgstr "Svuota"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +875,9 @@ msgstr "Aggiornato"
msgid "Status"
msgstr "Stato"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +972,8 @@ msgstr "Il dump è stato salvato nel file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Stai probabilmente cercando di caricare sul server un file troppo grande. "
"Fai riferimento alla documentazione %sdocumentation%s se desideri aggirare "
@@ -1160,11 +1159,11 @@ msgstr "Rimozione Utenti Selezionati"
msgid "Close"
msgstr "Chiudi"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Modifica"
@@ -1711,6 +1710,222 @@ msgstr "Minuto"
msgid "Second"
msgstr "Secondo"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Dimensione font"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Il file è stato solo parzialmente caricato."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Non trovo la cartella temporanea."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Non riesco a scrivere il file su disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Caricamento del file interrotto per estensione errata."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Errore sconosciuto nel caricamento del file."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Errore nello spostare il file caricato, vedi [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nessun indice definito!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indici"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unica"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Compresso"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalità"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Commenti"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "La chiave primaria è stata eliminata"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "L'indice %s è stato eliminato"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, "
+"possibilmente, essere rimosso."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Database"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Errore"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d riga modificata."
+msgstr[1] "%1$d righe modificate."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d riga cancellata."
+msgstr[1] "%1$d righe cancellate."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d riga inserita."
+msgstr[1] "%1$d righe inserite."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Impossibile salvare la configurazione"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Conta tabelle"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Non ci sono server configurati"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Non è disponibile nessuna informazione dettagliata sullo stato di questo "
+"motore di memorizzazione."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s è disponibile su questo server MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s è stato disabilitato su questo server MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Database non valido"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nome tabella non valido"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Errore nel rinominare la tabella %1$s in %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "La tabella %s è stata rinominata %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nessuna anteprima disponibile."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "prendilo"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema di default %s non trovato!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s non trovato!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Percorso per il tema non trovato %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Impossibile connettersi: impostazioni non valide."
@@ -1724,8 +1939,8 @@ msgstr "Benvenuto in %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"La ragione di questo è che probabilmente non hai creato alcun file di "
"configurazione. Potresti voler usare %1$ssetup script%2$s per crearne uno."
@@ -1835,14 +2050,6 @@ msgstr "Errore PBMS"
msgid "PBMS connection failed:"
msgstr "Connessione PBMS fallita:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Errore"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Impossibile ottenere informazioni su BLOB da parte del PBMS:"
@@ -1895,11 +2102,6 @@ msgstr "Tabelle"
msgid "Data"
msgstr "Dati"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indici"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2179,9 +2381,79 @@ msgstr "Nessun file da caricare"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Dimensione font"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Entrambi"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Altezza"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Aperto"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Chiuso"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struttura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dati"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struttura e dati"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rapido - mostra solo le opzioni minime di configurazione"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizzato - come sopra ma senza la scelta quick/custom"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "inserimenti completi"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "inserimenti estesi"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "entrambi i precedenti"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nessuno dei precedenti"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2844,12 +3116,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Database"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opzioni di visualizzazione dei database"
@@ -4529,80 +4795,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Indirizzo IP incorretto: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Entrambi"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Altezza"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Aperto"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Chiuso"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struttura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dati"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struttura e dati"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rapido - mostra solo le opzioni minime di configurazione"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizzato - mostra tutte le possibili opzioni di configurazione"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizzato - come sopra ma senza la scelta quick/custom"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "inserimenti completi"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "inserimenti estesi"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "entrambi i precedenti"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nessuno dei precedenti"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4673,24 +4865,6 @@ msgstr ""
msgid "Add an event"
msgstr "Aggiungi un nuovo server"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Connessione per controluser come definito nella configurazione fallita."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Il server non risponde"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Dettagli..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4765,9 +4939,9 @@ msgstr "Lunghezza/Set*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4826,11 +5000,6 @@ msgstr "Sicurezza"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Commenti"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4897,6 +5066,24 @@ msgstr ""
"Può essere approssimato. Vedi [a@./Documentation.html#faq3_11@Documentation]"
"FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Connessione per controluser come definito nella configurazione fallita."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Il server non risponde"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(o il socket del server locale MySQL non è correttamente configurato)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Dettagli..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5037,8 +5224,8 @@ msgstr ", il nome della tabella diventerá @TABLE@"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Questo valore è interpretato usando %1$sstrftime%2$s: in questo modo puoi "
"usare stringhe di formattazione per le date/tempi. Verranno anche aggiunte "
@@ -5829,8 +6016,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"La documentazione ed ulteriori informazioni a riguardo di PBXT é disponibile "
"su %sPrimeBase XT Home Page%s."
@@ -6140,45 +6327,6 @@ msgstr "Viste"
msgid "Export contents"
msgstr "Esporta contenuti"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Il file caricato eccede il parametro upload_max_filesize in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Il file caricato eccede il parametro MAX_FILE_SIZE specificato nel form HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Il file è stato solo parzialmente caricato."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Non trovo la cartella temporanea."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Non riesco a scrivere il file su disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Caricamento del file interrotto per estensione errata."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Errore sconosciuto nel caricamento del file."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Errore nello spostare il file caricato, vedi [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6198,6 +6346,41 @@ msgstr "Risultato SQL"
msgid "Generated by"
msgstr "Generato da"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Modifica la sua struttura seguendo il link \"Struttura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Vai al database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "impostazioni"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Vai alla tabella"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Vai alla visualizzazione"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6265,41 +6448,6 @@ msgstr "Nomi delle colonne"
msgid "This plugin does not support compressed imports!"
msgstr "Questo plugin non supporta importazioni di dati compressi!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Le seguenti strutture sono state create o modificate. Qui tu puoi:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Visualizza i contenuti delle strutture facendo click sul loro nome"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Modificare ogni impostazione cliccando sul corrispondente link \"Opzioni\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Modifica la sua struttura seguendo il link \"Struttura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Vai al database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "impostazioni"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Vai alla tabella"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Vai alla visualizzazione"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6325,42 +6473,6 @@ msgstr ""
"Il file XML specificato era malformato o incompleto. Correggi questo "
"problema e prova ancora."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nessun indice definito!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unica"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Compresso"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalità"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "La chiave primaria è stata eliminata"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "L'indice %s è stato eliminato"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Sembra che gli indici %1$s e %2$s sono uguali ed uno di questi potrebbe, "
-"possibilmente, essere rimosso."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6371,27 +6483,6 @@ msgstr "Nessuno"
msgid "Convert to Kana"
msgstr "Converti a Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d riga modificata."
-msgstr[1] "%1$d righe modificate."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d riga cancellata."
-msgstr[1] "%1$d righe cancellate."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d riga inserita."
-msgstr[1] "%1$d righe inserite."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Da"
@@ -6630,22 +6721,6 @@ msgstr "Ricarica la frame di navigazione"
msgid "This format has no options"
msgstr "Questo formato non ha opzioni"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Impossibile salvare la configurazione"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Conta tabelle"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Non ci sono server configurati"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "non OK"
@@ -7030,6 +7105,61 @@ msgstr "Differenza"
msgid "Target database"
msgstr "Database di destinazione"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Eseguendo query SQL sul server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Esegui la/e query SQL sul database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Cancella"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Campi"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Aggiungi ai preferiti questa query SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permetti ad ogni utente di accedere a questo bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Non sovrascrivere questa query da fuori della finestra"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitatori"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostra di nuovo questa query "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Visualizza solo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Percorso del file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directory di upload del web-server"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7094,61 +7224,6 @@ msgstr "Identificatore Non Valido"
msgid "Unknown Punctuation String"
msgstr "Stringa di Punctuation Sconosciuta"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Eseguendo query SQL sul server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Esegui la/e query SQL sul database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Cancella"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Campi"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Aggiungi ai preferiti questa query SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permetti ad ogni utente di accedere a questo bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Sostituisci segnalibro esistente se con lo stesso nome"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Non sovrascrivere questa query da fuori della finestra"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitatori"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostra di nuovo questa query "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Visualizza solo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Percorso del file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directory di upload del web-server"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7159,50 +7234,6 @@ msgstr ""
"installato le estensioni php necessarie come descritto nella %sdocumentazione"
"%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Non è disponibile nessuna informazione dettagliata sullo stato di questo "
-"motore di memorizzazione."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s è disponibile su questo server MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s è stato disabilitato su questo server MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Questo server MySQL non supporta il motore di memorizzazione %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Database non valido"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nome tabella non valido"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Errore nel rinominare la tabella %1$s in %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "La tabella %s è stata rinominata %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "La tabella sembra essere vuota!"
@@ -7323,39 +7354,6 @@ msgstr "Definizione PARTITION"
msgid "+ Add a value"
msgstr "+ Aggiungi un nuovo valore"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Non è stato trovato nessun percorso per l'immagine valido per il tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nessuna anteprima disponibile."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "prendilo"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema di default %s non trovato!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s non trovato!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Percorso per il tema non trovato %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7702,8 +7700,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Sul server è in esecuzione Suhosin. Controlla la documentazione: %"
-"sdocumentation%s per possibili problemi."
+"Sul server è in esecuzione Suhosin. Controlla la documentazione: "
+"%sdocumentation%s per possibili problemi."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8411,8 +8409,8 @@ msgstr "Elimina i databases gli stessi nomi degli utenti."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"N.B.: phpMyAdmin legge i privilegi degli utenti direttamente nella tabella "
"dei privilegi di MySQL. Il contenuto di questa tabella può differire dai "
@@ -10009,10 +10007,10 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - %"
-"saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia%s. "
-"Comunque, la protezione a base di IP potrebbe non essere affidabile se il "
-"tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
+"Se credi che é necessario, usa delle ulteriori impostazioni di protezione - "
+"%saimpostazioni di autenticazione dei host%s e %slista di proxy di fiducia"
+"%s. Comunque, la protezione a base di IP potrebbe non essere affidabile se "
+"il tuo IP appartiene ad un ISP dove migliaia di utenti, incluso te, sono "
"connessi."
#: setup/lib/index.lib.php:268
@@ -10027,8 +10025,8 @@ msgstr ""
"Hai impostato il tipo di autenticazione [kbd]config[/kbd] e hai inclusi il "
"nome utente e la parola chiave per l'auto-login, questo non è desiderato per "
"gli host in uso live. Chiunque che conosce o indovina il tuo URL di "
-"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta %"
-"sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
+"phpMyAdmin potrá direttamente accedere al pannello di phpMyAdmin. Imposta "
+"%sil tipo di autenticazione%s a [kbd]cookie[/kbd] o [kbd]http[/kbd]."
#: setup/lib/index.lib.php:270
#, php-format
diff --git a/po/ja.po b/po/ja.po
index c94e754caf..06b720402d 100644
--- a/po/ja.po
+++ b/po/ja.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-23 12:13+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-27 12:34+0200\n"
"Last-Translator: Yuichiro \n"
"Language-Team: japanese \n"
+"Language: ja\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ja\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "検索"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "検索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "実行する"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "データベース %1$s を作成しました。"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "データベースのコメント"
@@ -132,9 +132,9 @@ msgstr "データベースのコメント"
msgid "Table comments"
msgstr "テーブルのコメント"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "テーブルのコメント"
msgid "Column"
msgstr "カラム"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "カラム"
msgid "Type"
msgstr "種別"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "リンク先"
msgid "Comments"
msgstr "コメント"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "コメント"
msgid "No"
msgstr "いいえ"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "全選択解除"
msgid "The database name is empty!"
msgstr "データベース名が空です!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "データベース %s を %s にリネームしました"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "データベース %s を %s にコピーしました"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "新しいデータベース名"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "コマンド"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "データベースの削除"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "データベース %s を削除しました"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "データベースを削除する (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "データベースのコピー先"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "構造のみ"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "構造とデータ"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "データのみ"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "コピーの前に CREATE DATABASE する"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s を追加"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT 値を追加する"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "制約を追加する"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "コピーしたデータベースに切り替える"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "コピーしたデータベースに切り替える"
msgid "Collation"
msgstr "照合順序"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"phpMyAdmin の設定保存場所が無効になっています。理由については%sこちら%sをご覧"
"ください。"
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "リレーショナルスキーマを編集またはエクスポートする"
@@ -497,98 +496,98 @@ msgstr "データベース %s のSQL:"
msgid "Submit Query"
msgstr "クエリを実行する"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL は正常に実行されました"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "プロシージャ内の最後のステートメントは %d 行の変更を行いました"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "ルーチン %s の実行結果"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "返り値が空でした(行数0)"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
-msgstr "次のクエリが実行されます:"
+msgstr "クエリの実行に失敗しました:『%s』"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQLのメッセージ: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "要求処理中でのエラー"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
#| msgid "No routine with name %s found in database %s"
msgid "No routine with name %1$s found in database %2$s"
msgstr "データベース %2$s に %1$s という名前のルーチンはありません"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "ルーチンを実行する"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "ルーチン %s のエクスポート"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "ルーチンタイプが不正です: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "ルーチン %1$s を変更しました。"
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "ルーチン %1$s を作成しました。"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "リクエストの処理中に 1 つ以上のエラーが発生しました:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "ルーチンを作成する"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "ルーチンを編集する"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -716,8 +715,8 @@ msgstr "SQL コマンドの追跡は非アクティブです。"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "このビューの最低行数。詳しくは%sドキュメント%sをご覧ください。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -784,8 +783,8 @@ msgstr "印刷用画面"
msgid "Empty"
msgstr "空にする"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -858,9 +857,9 @@ msgstr "更新日時"
msgid "Status"
msgstr "状態"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -956,8 +955,8 @@ msgstr "ダンプをファイル %s に保存しました"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"アップロードしようとしたファイルが大きすぎるようです。対策については %sドキュ"
"メント%s をご覧ください"
@@ -1138,11 +1137,11 @@ msgstr "選択したユーザを削除する"
msgid "Close"
msgstr "閉じる"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編集"
@@ -1305,7 +1304,7 @@ msgstr "削除中"
#: js/messages.php:122
msgid "The definition of a stored function must contain a RETURN statement!"
-msgstr ""
+msgstr "ストアドファンクションの定義には、RETURN 文を含めなければなりません!"
#: js/messages.php:123
msgid "Value too long in the form!"
@@ -1675,6 +1674,214 @@ msgstr "分"
msgid "Second"
msgstr "秒"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "フォントサイズ"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
+"レクティブの値を超えています。"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
+"クティブの値を超えています。"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "一時フォルダが見つかりません。"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ファイルをディスクに書き込めません。"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "拡張のせいでファイルのアップロードが中断されました。"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"アップロードされたファイルの移動に失敗しました。FAQ 1.11 をご覧ください。"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "インデックスが定義されていません!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "インデックス"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "ユニーク"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "圧縮"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "一意な値の数"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "コメント"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "主キーを削除しました"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "インデックス %s を削除しました"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし"
+"れません。"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "データベース"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "エラー"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d 行変更しました。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d 行削除しました。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d 行挿入しました。"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "最近使用したテーブルが保存できません"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "最近使用したテーブル"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "最近使用したテーブルはありません"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "このストレージエンジンにはステータスの詳細情報はありません"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s は有効になっています"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s は無効になっています"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "不正なデータベースです"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "テーブル名が不正です"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "テーブル %s を %s にリネームしました"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "テーブルにユーザ設定が保存できません"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "テーマ %s の画像パスが無効です!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "プレビューは利用できません"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "これにする"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "デフォルトテーマ %s が見つかりません!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "テーマ %s が見つかりません!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "テーマ %s のテーマパスが見つかりません!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "テーマ"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "接続できません: 設定が無効です"
@@ -1688,11 +1895,11 @@ msgstr "%s へようこそ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプト%2"
-"$s を利用して設定ファイルを作成してください"
+"設定ファイルが作成されていないものと思われます。%1$sセットアップスクリプ"
+"ト%2$s を利用して設定ファイルを作成してください"
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1796,14 +2003,6 @@ msgstr "PBMS エラー"
msgid "PBMS connection failed:"
msgstr "PBMS 接続に失敗しました:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "エラー"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS が BLOB 情報取得に失敗しました:"
@@ -1856,11 +2055,6 @@ msgstr "テーブル"
msgid "Data"
msgstr "データ"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "インデックス"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -1888,10 +2082,9 @@ msgid "Check Privileges"
msgstr "特権をチェックする"
#: libraries/common.inc.php:587
-#, fuzzy
#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
-msgstr "設定が保存できません"
+msgstr "設定ファイルの読み込みに失敗しました"
#: libraries/common.inc.php:588
msgid ""
@@ -2141,9 +2334,77 @@ msgstr "アップロードファイルがありません"
msgid "Execute"
msgstr "実行"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "フォントサイズ"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "両方"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "なし"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "左"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "右"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "開いておく"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "閉じておく"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "構造"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "データ"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "構造とデータ"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "簡易 - 設定するための最小限のオプションのみ表示"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "詳細 - 設定に必要な全てのオプションを表示"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完全な INSERT 文を作成する"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "長い INSERT 文を作成する"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "上の両方を行う"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "上のどちらでもない"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2798,12 +3059,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "データベース"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "データベースの表示オプション"
@@ -4418,78 +4673,6 @@ msgstr "pmadb を使いましたが、phpMyAdmin ユーザのパスワードが
msgid "Incorrect IP address: %s"
msgstr "不正な IP アドレス:%s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "両方"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "なし"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "左"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "右"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "開いておく"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "閉じておく"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "構造"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "データ"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "構造とデータ"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "簡易 - 設定するための最小限のオプションのみ表示"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "詳細 - 設定に必要な全てのオプションを表示"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "詳細 - 上とほぼ同じ、ただし簡易/詳細の選択はなし"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完全な INSERT 文を作成する"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "長い INSERT 文を作成する"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "上の両方を行う"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "上のどちらでもない"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4550,28 +4733,9 @@ msgid "Turn it off"
msgstr ""
#: libraries/db_events.inc.php:141
-#, fuzzy
#| msgid "Add a new Event"
msgid "Add an event"
-msgstr "新しいイベントを追加する"
-
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "サーバが応答しません"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "詳細..."
+msgstr "イベントを追加する"
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4641,9 +4805,9 @@ msgstr "長さ/値"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4655,26 +4819,23 @@ msgid "Add parameter"
msgstr "パラメータを追加する"
#: libraries/db_routines.lib.php:710
-#, fuzzy
#| msgid "Remove database"
msgid "Remove last parameter"
-msgstr "データベースの削除"
+msgstr "最後のパラメータを削除する"
#: libraries/db_routines.lib.php:715 libraries/db_routines.lib.php:1217
msgid "Return type"
msgstr "返り値の種類"
#: libraries/db_routines.lib.php:721
-#, fuzzy
#| msgid "Length/Values"
msgid "Return length/values"
-msgstr "長さ/値"
+msgstr "返り値の長さ/値"
#: libraries/db_routines.lib.php:726
-#, fuzzy
#| msgid "Table options"
msgid "Return options"
-msgstr "テーブルオプション"
+msgstr "返り値のオプション"
#: libraries/db_routines.lib.php:745
msgid "Definition"
@@ -4696,11 +4857,6 @@ msgstr "SQL SECURITY"
msgid "SQL data access"
msgstr "データ干渉方式"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "コメント"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "ルーチンのパラメータ"
@@ -4759,6 +4915,24 @@ msgid ""
"3.11[/a]"
msgstr "正確な数字とは限りません。FAQ 3.11 をご覧ください"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"設定ファイルに定義されている管理ユーザ(controluser)での接続に失敗しました"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "サーバが応答しません"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(あるいはローカルの MySQL サーバのソケットが正しく設定されていません)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "詳細..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4899,8 +5073,8 @@ msgstr "、@TABLE@ はテーブル名に"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"この値は %1$sstrftime%2$s を使用して解釈されますので、時刻の書式文字列を使用"
"することができます。また、埋め込み変数変換も行われます(%3$s変換されま"
@@ -5223,10 +5397,9 @@ msgid "Event"
msgstr "イベント"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
#| msgid "Add a new Trigger"
msgid "Add a trigger"
-msgstr "新しいトリガを追加する"
+msgstr "トリガを追加する"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -5667,8 +5840,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"PBXT に関するドキュメントおよび詳細な情報は、%sPrimeBase XT オフィシャルサイ"
"ト%sにあります。"
@@ -5965,47 +6138,6 @@ msgstr "ビュー"
msgid "Export contents"
msgstr "内容をエクスポートする"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"アップロードしたファイルは php.ini に指定されている upload_max_filesize ディ"
-"レクティブの値を超えています。"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"アップロードしたファイルは HTML フォームに指定されている MAX_FILE_SIZE ディレ"
-"クティブの値を超えています。"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "アップロードしたファイルは一部分しかアップロードできませんでした。"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "一時フォルダが見つかりません。"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ファイルをディスクに書き込めません。"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "拡張のせいでファイルのアップロードが中断されました。"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ファイルのアップロード中に予期しないエラーが発生しました。"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"アップロードされたファイルの移動に失敗しました。FAQ 1.11 をご覧ください。"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6023,6 +6155,41 @@ msgstr "SQL の結果"
msgid "Generated by"
msgstr "生成環境"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "名前をクリックすることで構造内容を表示します。"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "データベースに移動"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "設定"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "テーブルに移動"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "ビューに移動"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6089,41 +6256,6 @@ msgstr "カラム名"
msgid "This plugin does not support compressed imports!"
msgstr "このプラグインでは圧縮されたファイルのインポートはできません!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下に示す構成が、作成もしくは変更されました。ここで次のことが行えます。"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "名前をクリックすることで構造内容を表示します。"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"「オプション」のリンクをクリックすることで対応する設定の変更が行えます。"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "名前の後ろにある「構造」のリンクより構造の編集が行えます。"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "データベースに移動"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "設定"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "テーブルに移動"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "ビューに移動"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "パーセントは適切な小数に変換する(例:12.00% を .12)"
@@ -6148,42 +6280,6 @@ msgstr ""
"指定された XML ファイルは、不完全もしくはフォーマットが正しくありません。問題"
"を修正して再度試してみてください。"
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "インデックスが定義されていません!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "ユニーク"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "圧縮"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "一意な値の数"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "主キーを削除しました"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "インデックス %s を削除しました"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"インデックス %1$s と %2$s は同一のもののようです。一方は削除してもよいかもし"
-"れません。"
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6194,24 +6290,6 @@ msgstr "なし"
msgid "Convert to Kana"
msgstr "全角カナへ変換する"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d 行変更しました。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d 行削除しました。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d 行挿入しました。"
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "付け替え元"
@@ -6450,18 +6528,6 @@ msgstr "ナビゲーションフレームの再読み込み"
msgid "This format has no options"
msgstr "この書式にはオプションはありません"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "最近使用したテーブルが保存できません"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "最近使用したテーブル"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "最近使用したテーブルはありません"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Not OK"
@@ -6841,6 +6907,61 @@ msgstr "差分"
msgid "Target database"
msgstr "対象先のデータベース"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "サーバ %s 上でクエリを実行する"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "データベース %s 上でクエリを実行する"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "クリア"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "カラム"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "この SQL をブックマークする"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "すべてのユーザがこのブックマークを利用できるようにする"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "同名のブックマークは差し替える"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "別ウインドウからのクエリの上書きを禁止する"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "デリミタ"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 実行したクエリをここに表示する"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "表示のみ"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "テキストファイルの位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "ウェブサーバ上のアップロードディレクトリ"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6903,61 +7024,6 @@ msgstr "不正な識別子です"
msgid "Unknown Punctuation String"
msgstr "無効な句読点文字です"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "サーバ %s 上でクエリを実行する"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "データベース %s 上でクエリを実行する"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "クリア"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "カラム"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "この SQL をブックマークする"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "すべてのユーザがこのブックマークを利用できるようにする"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "同名のブックマークは差し替える"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "別ウインドウからのクエリの上書きを禁止する"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "デリミタ"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 実行したクエリをここに表示する"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "表示のみ"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "テキストファイルの位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "ウェブサーバ上のアップロードディレクトリ"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6967,48 +7033,6 @@ msgstr ""
"SQL の検証機能を初期化できません。%sドキュメント%s の記載通りに必要な PHP 拡"
"張がインストールされているか確認してください"
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "このストレージエンジンにはステータスの詳細情報はありません"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s は有効になっています"
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s は無効になっています"
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "この MySQL サーバは %s ストレージエンジンをサポートしていません"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "不正なデータベースです"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "テーブル名が不正です"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "テーブルを %1$s から %2$s にリネームするときにエラーが発生しました"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "テーブル %s を %s にリネームしました"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "テーブルにユーザ設定が保存できません"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "テーブルが空のようです!"
@@ -7122,42 +7146,9 @@ msgid "PARTITION definition"
msgstr "パーティションの定義"
#: libraries/tbl_properties.inc.php:776
-#, fuzzy
#| msgid "+ Add a new value"
msgid "+ Add a value"
-msgstr "+ 新しい値を追加する"
-
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "テーマ %s の画像パスが無効です!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "プレビューは利用できません"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "これにする"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "デフォルトテーマ %s が見つかりません!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "テーマ %s が見つかりません!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "テーマ %s のテーマパスが見つかりません!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "テーマ"
+msgstr "+ 値を追加する"
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
@@ -8196,8 +8187,8 @@ msgstr "ユーザと同名のデータベースを削除する"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意: phpMyAdmin は MySQL の特権テーブルから直接ユーザ特権を取得しますが、手"
"作業で特権を更新した場合は phpMyAdmin が利用しているテーブルの内容とサーバの"
@@ -9448,7 +9439,7 @@ msgstr ""
#: server_variables.php:58
msgid "Setting variable failed"
-msgstr ""
+msgstr "変数の設定に失敗しました"
#: server_variables.php:77
msgid "Server variables and settings"
@@ -9725,10 +9716,11 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定(%"
-"sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してください。し"
-"かしながら、ユーザが数千人もいるような ISP に所属している、含まれている、接続"
-"されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえません。"
+"それでも、[kbd]config[/kbd] 認証が必要であると思われる場合、追加の保護設定"
+"(%sホスト認証%s設定および%s信頼されたプロキシのリスト%s)を使用してくださ"
+"い。しかしながら、ユーザが数千人もいるような ISP に所属している、含まれてい"
+"る、接続されている場合には、IP アドレスを基にした保護は信頼性が高いとはいえま"
+"せん。"
#: setup/lib/index.lib.php:268
#, php-format
diff --git a/po/ka.po b/po/ka.po
index a92211df93..c26f62c343 100644
--- a/po/ka.po
+++ b/po/ka.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:14+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: georgian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "ძებნა"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "ძებნა"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "გადასვლა"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "შეიქმნა მონაცემთა ბაზა %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "მონაცემთა ბაზის კომენტარი: "
@@ -131,9 +131,9 @@ msgstr "მონაცემთა ბაზის კომენტარი:
msgid "Table comments"
msgstr "ცხრილის კომენტარები"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "ცხრილის კომენტარები"
msgid "Column"
msgstr "სვეტების სახელები"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "სვეტების სახელები"
msgid "Type"
msgstr "ტიპი"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Links to"
msgid "Comments"
msgstr "კომენტარები"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "კომენტარები"
msgid "No"
msgstr "არა"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,82 +262,82 @@ msgstr "მონიშნვის მოხსნა"
msgid "The database name is empty!"
msgstr "მონაცემთა ბაზა ცარიელია!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Database %s has been renamed to %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Rename database to"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "ბრძანება"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Rename database to"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s has been dropped."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "მონაცემთა ბაზები არაა"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copy database to"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "მხოლოდ სტრუქტურა"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "სტრუქტურა და მონაცემები"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "მხოლოდ მონაცემები"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE before copying"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Add %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Add AUTO_INCREMENT value"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Add constraints"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Switch to copied database"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -347,7 +346,7 @@ msgstr "Switch to copied database"
msgid "Collation"
msgstr "კოლაცია"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -359,7 +358,7 @@ msgstr ""
"The additional features for working with linked tables have been "
"deactivated. To find out why click %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -512,109 +511,109 @@ msgstr "SQL query on database %s:"
msgid "Submit Query"
msgstr "მოთხოვნის გაგზავნა"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Your SQL query has been executed successfully"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Allows executing stored routines."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL-მა თქვა: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "პროცესები"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "No tables found in database."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export functions"
msgid "Export of routine %s"
msgstr "Export defaults"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Invalid server index: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Table %s has been dropped"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Table %1$s has been created."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Create relation"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "რედაქტირების რეჟიმი"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -751,11 +750,11 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -821,8 +820,8 @@ msgstr "ხედის ამობეჭდვა"
msgid "Empty"
msgstr "ცარიელი"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -903,9 +902,9 @@ msgstr ""
msgid "Status"
msgstr "მდგომარეობა"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1003,11 +1002,11 @@ msgstr "Dump has been saved to file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1195,11 +1194,11 @@ msgstr "Remove selected users"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "რედაქტირება"
@@ -1841,6 +1840,227 @@ msgstr "in use"
msgid "Second"
msgstr "წამში"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "შრიფტის ზომა"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"The uploaded file exceeds the upload_max_filesize directive in php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "The uploaded file was only partially uploaded."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Missing a temporary folder."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Failed to write file to disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "File upload stopped by extension."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Unknown error in file upload."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "ინდექსი არაა განსაზღვრული!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ინდექსები"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "უნიკალური"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "შეკუმშული"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "კომენტარი"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "The primary key has been dropped"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s has been dropped"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "მონაცემთა ბაზები"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "შეცდომა"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row(s) affected."
+msgstr[1] "%1$d row(s) affected."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "წაიშალა %1$d სტრიქონი."
+msgstr[1] "წაიშალა %1$d სტრიქონი."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "ჩაისვა %1$d სტრიქონი."
+msgstr[1] "ჩაისვა %1$d სტრიქონი."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "ცხრილების დათვლა"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "There are no configured servers"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s გათიშულია ამ MySQL სერვერზე."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "არასწორი მონაცემთა ბაზა"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ცხრილის არასწორი სახელი"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Error renaming table %1$s to %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Table %s has been renamed to %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Default theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "დაკავშირება შეუძლებელია: პარამეტრები არასწორია."
@@ -1854,11 +2074,11 @@ msgstr "მოგესალმებათ %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1964,14 +2184,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL კავშირის კოლაცია"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "შეცდომა"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2024,11 +2236,6 @@ msgstr "ცხრილები"
msgid "Data"
msgstr "მონაცემები"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ინდექსები"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2320,9 +2527,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "შრიფტის ზომა"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Unclosed quote"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "სტრუქტურა"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "სტრუქტურა და მონაცემები"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "სრული ჩასმები"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Extended inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3018,12 +3302,6 @@ msgstr "Set import and export directories and compression options"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "მონაცემთა ბაზები"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "მონაცემთა ბაზის ჩვენების პარამეტრები"
@@ -4723,87 +5001,6 @@ msgstr "Empty phpMyAdmin control user password while using pmadb"
msgid "Incorrect IP address: %s"
msgstr "IP მისამართი არასწორია: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Unclosed quote"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "სტრუქტურა"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "სტრუქტურა და მონაცემები"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "სრული ჩასმები"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Extended inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4872,23 +5069,6 @@ msgstr ""
msgid "Add an event"
msgstr "ახალი სერვერის დამატება"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "სერვერი არ პასუხობს"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "დეტალები..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4963,9 +5143,9 @@ msgstr "Length/Values"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5024,11 +5204,6 @@ msgstr "უსაფრთხოება"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "კომენტარი"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5095,6 +5270,23 @@ msgstr ""
"შეიძლება იყოს მიახლოებითი. იხილეთ [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "სერვერი არ პასუხობს"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "დეტალები..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5264,12 +5456,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -6068,8 +6260,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6388,47 +6580,6 @@ msgstr "ხედო"
msgid "Export contents"
msgstr "Export defaults"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"The uploaded file exceeds the upload_max_filesize directive in php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "The uploaded file was only partially uploaded."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Missing a temporary folder."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Failed to write file to disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "File upload stopped by extension."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Unknown error in file upload."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6446,6 +6597,42 @@ msgstr "SQL-ის შედეგი"
msgid "Generated by"
msgstr "Generated by"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "მონაცემთა ბაზები არაა"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6508,42 +6695,6 @@ msgstr "სვეტების სახელები"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "მონაცემთა ბაზები არაა"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "მონაცემთა ბაზები არაა"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6568,42 +6719,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "ინდექსი არაა განსაზღვრული!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "უნიკალური"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "შეკუმშული"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "The primary key has been dropped"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s has been dropped"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6616,30 +6731,6 @@ msgstr "არაა"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row(s) affected."
-msgstr[1] "%1$d row(s) affected."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "წაიშალა %1$d სტრიქონი."
-msgstr[1] "წაიშალა %1$d სტრიქონი."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "ჩაისვა %1$d სტრიქონი."
-msgstr[1] "ჩაისვა %1$d სტრიქონი."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6885,24 +6976,6 @@ msgstr "Customize navigation frame"
msgid "This format has no options"
msgstr "ამ ფორმატს არ აქვს პარამეტრები"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "კონფიგურაციის შენახვა ან ჩატვირთვა ვერ მოხერხდა"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "ცხრილების დათვლა"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "There are no configured servers"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "not OK"
@@ -7301,6 +7374,63 @@ msgstr ""
msgid "Target database"
msgstr "მონაცემთა ბაზაში ძებნა"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Run SQL query/queries on server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Run SQL query/queries on database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "გაწმენდა"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "სვეტების სახელები"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bookmark this SQL query"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Let every user access this bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Replace existing bookmark of same name"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "გამყოფი"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Show this query here again "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "View only"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Location of the text file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web server upload directory"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7363,63 +7493,6 @@ msgstr "Invalid Identifer"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Run SQL query/queries on server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Run SQL query/queries on database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "გაწმენდა"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "სვეტების სახელები"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bookmark this SQL query"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Let every user access this bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Replace existing bookmark of same name"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "გამყოფი"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Show this query here again "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "View only"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Location of the text file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web server upload directory"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7429,49 +7502,6 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s ხელმისაწვდომია ამ MySQL სერვერზე."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s გათიშულია ამ MySQL სერვერზე."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "ამ MySQL სერვერს არ აქვს %s ძრავის მხარდაჭერა."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "არასწორი მონაცემთა ბაზა"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ცხრილის არასწორი სახელი"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Error renaming table %1$s to %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Table %s has been renamed to %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "როგორც ჩანს ცხრილი ცარიელია!"
@@ -7603,38 +7633,6 @@ msgstr "PARTITION definition"
msgid "+ Add a value"
msgstr "ახალი სერვერის დამატება"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Default theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8782,13 +8780,13 @@ msgstr "Drop the databases that have the same names as the users."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10375,9 +10373,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/ko.po b/po/ko.po
index 2103412c0f..b01685891c 100644
--- a/po/ko.po
+++ b/po/ko.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-06-16 18:18+0200\n"
"Last-Translator: \n"
"Language-Team: korean \n"
+"Language: ko\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ko\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "검색"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "검색"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "실행"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "데이터베이스 %1$s가 생성되었습니다."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "데이터베이스 설명:"
@@ -131,9 +131,9 @@ msgstr "데이터베이스 설명:"
msgid "Table comments"
msgstr "테이블 설명"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "테이블 설명"
msgid "Column"
msgstr "컬럼명"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "컬럼명"
msgid "Type"
msgstr "종류"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "링크 대상:"
msgid "Comments"
msgstr "설명(코멘트)"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "설명(코멘트)"
msgid "No"
msgstr " 아니오 "
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,82 +260,82 @@ msgstr "모두 선택안함"
msgid "The database name is empty!"
msgstr "데이터베이스명이 없습니다!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "데이터베이스 %s 의 이름을 %s 로 변경하였습니다."
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "데이터베이스 %s 를 %s 로 복사하였습니다."
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "데이터베이스 이름 변경"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "커맨드"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "데이터베이스 이름 변경"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "데이터베이스 %s 를 제거했습니다."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "데이터베이스가 없습니다"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "데이터베이스 복사"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "구조만"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "구조와 데이터 모두"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "데이터만"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "복사 전에 CREATE DATABASE 실행"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s 추가"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT 값 추가"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "제약조건 추가"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "복사한 테이블로 옮겨감"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -345,7 +344,7 @@ msgstr "복사한 테이블로 옮겨감"
msgid "Collation"
msgstr "데이터정렬방식"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,10 +353,10 @@ msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
-"s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
+"%s여기를 클릭%s하십시오."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -502,101 +501,101 @@ msgstr "데이터베이스 %s에 SQL 질의:"
msgid "Submit Query"
msgstr "질의 실행"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL 질의가 바르게 실행되었습니다."
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "결과값이 없습니다. (빈 레코드 리턴.)"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL 메시지: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "프로세스 목록"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "데이터베이스에 테이블이 없습니다."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "테이블 %s 을 제거했습니다."
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "테이블 %s 을 제거했습니다."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "서버 버전"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -729,8 +728,8 @@ msgstr "트래킹이 활성화되어 있지 않습니다."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -797,8 +796,8 @@ msgstr "인쇄용 보기"
msgid "Empty"
msgstr "비우기"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +875,9 @@ msgstr ""
msgid "Status"
msgstr "상태"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -976,8 +975,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1159,11 +1158,11 @@ msgstr "선택한 사용자를 삭제"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "수정"
@@ -1736,6 +1735,216 @@ msgstr "분"
msgid "Second"
msgstr "초"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "글꼴 크기"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
+"다."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "임시 폴더가 없습니다."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "디스크 쓰기에 실패했습니다."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "인덱스가 설정되지 않았습니다!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "인덱스"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "고유값"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "설명(코멘트)"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "기본 키를 제거했습니다"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "인덱스 %s 를 제거했습니다"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "데이터베이스 "
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "오류"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "테이블이 없습니다"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "테이블 %s을(를) %s(으)로 변경하였습니다."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "연결할 수 없습니다: 잘못된 설정."
@@ -1749,8 +1958,8 @@ msgstr "%s에 오셨습니다"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"설정 파일을 생성하지 않은 것 같습니다. %1$ssetup script%2$s 를 사용해 설정 파"
"일을 생성할 수 있습니다."
@@ -1854,14 +2063,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "오류"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1914,11 +2115,6 @@ msgstr "테이블 수"
msgid "Data"
msgstr "데이터"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "인덱스"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2199,9 +2395,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "글꼴 크기"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "따옴표(quote)가 닫히지 않았음"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "구조"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "구조와 데이터 모두"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "완전한 INSERT문 작성"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "확장된 inserts"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2869,12 +3142,6 @@ msgstr ""
msgid "LaTeX"
msgstr "Label"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "데이터베이스 "
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4410,87 +4677,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "따옴표(quote)가 닫히지 않았음"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "구조"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "구조와 데이터 모두"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "완전한 INSERT문 작성"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "확장된 inserts"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4556,23 +4742,6 @@ msgstr ""
msgid "Add an event"
msgstr "새 사용자 추가"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "서버 응답이 없습니다"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4645,9 +4814,9 @@ msgstr "길이/값*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4704,12 +4873,6 @@ msgstr "질의 종류"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "설명(코멘트)"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4769,6 +4932,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "서버 응답이 없습니다"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4929,8 +5109,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5655,8 +5835,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5959,46 +6139,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"php.ini 파일에 지정된 upload_max_filesize 값보다 더 큰 파일이 업로드되었습니"
-"다."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "HTML 폼에 지정된 MAX_FILE_SIZE 값보다 더 큰 파일이 업로드되었습니다."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "임시 폴더가 없습니다."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "디스크 쓰기에 실패했습니다."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "파일 업로드 중에 알 수 없는 오류가 발생했습니다."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"업로드된 파일을 이동시킬 수 없었습니다. [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a] 참조."
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6016,6 +6156,41 @@ msgstr "SQL 결과"
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "데이터베이스가 없습니다"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6077,41 +6252,6 @@ msgstr "열(칼럼) 이름"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "데이터베이스가 없습니다"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6134,40 +6274,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "인덱스가 설정되지 않았습니다!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "고유값"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "기본 키를 제거했습니다"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "인덱스 %s 를 제거했습니다"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6180,27 +6286,6 @@ msgstr "없음"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6443,19 +6528,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "테이블이 없습니다"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6843,59 +6915,6 @@ msgstr ""
msgid "Target database"
msgstr "데이터베이스 검색"
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. "
-"이것이 문제를 진단하는데 도움이 될 것입니다."
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr "따옴표(quote)가 닫히지 않았음"
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr "잘못된 식별자(Identifer)"
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, fuzzy, php-format
msgid "Run SQL query/queries on server %s"
@@ -6953,6 +6972,59 @@ msgstr "SQL 텍스트파일의 위치"
msgid "web server upload directory"
msgstr "웹서버 업로드 디렉토리"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+"SQL 질의문에 에러가 있습니다. MySQL 서버가 다음과 같은 에러를 출력했습니다. "
+"이것이 문제를 진단하는데 도움이 될 것입니다."
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr "따옴표(quote)가 닫히지 않았음"
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr "잘못된 식별자(Identifer)"
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6962,48 +7034,6 @@ msgstr ""
"SQL 검사기가 초기화되지 않았습니다. %s문서%s에서 설명한 php 확장모듈을 설치했"
"는지 확인해보십시오."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "이 MySQL 서버는 %s 스토리지 엔진을 지원하지 않습니다."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "테이블 %s을(를) %s(으)로 변경하였습니다."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7126,38 +7156,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "새 사용자 추가"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7413,8 +7411,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 %"
-"s여기를 클릭%s하십시오."
+"링크 테이블을 처리하는 추가 기능이 비활성화되어 있습니다. 원인을 확인하려면 "
+"%s여기를 클릭%s하십시오."
#: main.php:314
msgid ""
@@ -8170,8 +8168,8 @@ msgstr "사용자명과 같은 이름의 데이터베이스를 삭제"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/lt.po b/po/lt.po
index 13c6c0c3b8..1b38a0a63d 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-04-05 15:52+0200\n"
"Last-Translator: Kęstutis \n"
"Language-Team: lithuanian \n"
+"Language: lt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: lt\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%"
-"100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n"
+"%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Paieška"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Paieška"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykdyti"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Duomenų bazė %1$s sukurta."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Duomenų bazės komentaras: "
@@ -132,9 +132,9 @@ msgstr "Duomenų bazės komentaras: "
msgid "Table comments"
msgstr "Lentelės komentarai"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Lentelės komentarai"
msgid "Column"
msgstr "Stulpelis"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stulpelis"
msgid "Type"
msgstr "Tipas"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Sąryšis su"
msgid "Comments"
msgstr "Komentarai"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Komentarai"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Atžymėti visas"
msgid "The database name is empty!"
msgstr "Nenurodytas duomenų bazės vardas!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Duomenų bazė %s pervadinta į %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Duomenų bazė %s buvo nukopijuota į %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pervadinti duomenų bazę į"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Pašalinti duomenų bazę"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Duomenų bazė %s ištrinta."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Pašalinti duomenų bazę (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopijuoti duomenų bazę į"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tik struktūra"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktūra ir duomenys"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Tik duomenys"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE prieš kopijuojant"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Pridėti %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Pridėti AUTO_INCREMENT reikšmę"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Pridėti apribojimą"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pereiti į nukopijuotą duomenų bazę"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Pereiti į nukopijuotą duomenų bazę"
msgid "Collation"
msgstr "Palyginimas"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -351,7 +350,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigūracijos talpinimo vieta išjungta. %sIšsiaiškinti kodėl%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Keisti arba eksportuoti ryšių schemą"
@@ -498,14 +497,14 @@ msgstr "SQL-užklausa duomenų bazėje %s:"
msgid "Submit Query"
msgstr "Vykdyti užklausą"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Jūsų SQL užklausa sėkmingai įvykdyta"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -513,96 +512,96 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Leisti įvykdyti saugomas programas (stored routines)."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gražino tuščią rezultatų rinkinį (nėra eilučių)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Sekančios užklausos buvo įvykdytos:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL atsakymas: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Klaida vykdant užklausą"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Duomenų bazėje nerasta jokių lentelių."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Eksportuoti numatytąsias reikšmes"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Blogas serverio indeksas: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Stulpelis %s panaikintas"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Sukurta %1$s lentelė."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Sukurti sąryšį"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Redagavimo režimas"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -734,11 +733,11 @@ msgstr "Sekimas yra neaktyvus."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos %"
-"sdokumentacijoje%s."
+"Šis rodinys turi mažiausiai tiek eilučių. Daugiau informacijos "
+"%sdokumentacijoje%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -804,8 +803,8 @@ msgstr "Spausdinti struktūrą"
msgid "Empty"
msgstr "Išvalyti"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -884,9 +883,9 @@ msgstr "Atnaujinta"
msgid "Status"
msgstr "Būsena"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -980,11 +979,11 @@ msgstr "Atvaizdis įrašytas faile %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti %"
-"sdokumentaciją%s būdams kaip apeiti šį apribojimą."
+"Jūs tikriausiai bandėte įkelti per didelį failą. Prašome perskaityti "
+"%sdokumentaciją%s būdams kaip apeiti šį apribojimą."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1168,11 +1167,11 @@ msgstr "Šalinami pažymėti vartotojai"
msgid "Close"
msgstr "Uždaryti"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Redaguoti"
@@ -1725,6 +1724,224 @@ msgstr "Minutė"
msgid "Second"
msgstr "Sekundės"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Šrifto dydis"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
+"formoje."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Trūksta laikino katalogo."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nepavyko įrašyti failo į diską."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nežinoma klaida failų įkėlime."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation."
+"html#faq1_11@Documentation]DUK 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nėra aprašytų indeksų!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksai"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikalus"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Suspausta"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Elementų skaičius"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentaras"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Panaikintas pirminis raktas"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksas %s ištrintas"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Duomenų bazės"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Klaida"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Pakeista %1$d eilutė."
+msgstr[1] "Pakeistos %1$d eilutės."
+msgstr[2] "Pakeista %1$d eilučių."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Ištrinta %1$d eilutė."
+msgstr[1] "Ištrintos %1$d eilutės."
+msgstr[2] "Ištrinta %1$d eilučių."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Įterpta %1$d eilutė."
+msgstr[1] "Įterptos %1$d eilutės."
+msgstr[2] "Įterpta %1$d eilučių."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Nepavyko išsaugoti konfigūracijos"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Suskaičiuoti lenteles"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Nėra jokių sukonfigūruotų serverių"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s galimas šiame MySQL serveryje."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s šiame MySQL serveryje yra išjungtas."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neteisingas duomenų bazės vardas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neteisingas lentelės vardas"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Lentelė %s pervadinta į %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Peržiūra negalima."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "pasirinkti"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standartinė tema %s nerasta!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nerasta!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Kelias iki temos nerastas temai %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Neįmanoma prisijungti: neteisingi duomenys."
@@ -1738,8 +1955,8 @@ msgstr "Jūs naudojate %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Jūs dar turbūt nesukūrėte nustatymų failo. Galite pasinaudoti %1$snustatymų "
"skriptu%2$s, kad sukurtumėte failą."
@@ -1848,14 +2065,6 @@ msgstr "PBMS klaida"
msgid "PBMS connection failed:"
msgstr "PBMS prisijungimo klaida:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Klaida"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS gavimas BLOB informacijos nepavyko:"
@@ -1908,11 +2117,6 @@ msgstr "Lentelės"
msgid "Data"
msgstr "Duomenys"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksai"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2192,9 +2396,80 @@ msgstr "Nėra failų išsiuntimui"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Šrifto dydis"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Abu"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "Aukštis"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Atverti"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Uždarytas"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktūra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "duomenys"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktūra ir duomenys"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Greitas - rodomi tik minimalūs nustatymai"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Individualizuotas - rodyti visus nustatymus"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+"Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "užbaigti įterpimus"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "praplėsti įterpimus"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "abu iš paminėtų"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nei vieną iš paminėtų"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2848,12 +3123,6 @@ msgstr "Naudoti importavimo ir eksportavimo katalogus ir suspaudimo nustatymus"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Duomenų bazės"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Duomenų bazių rodymo nustatymai"
@@ -4435,81 +4704,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Neteisingas IP adresas: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Abu"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "Aukštis"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Atverti"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Uždarytas"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktūra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "duomenys"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktūra ir duomenys"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Greitas - rodomi tik minimalūs nustatymai"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Individualizuotas - rodyti visus nustatymus"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-"Individualizuotas - kaip paminėtas, bet be greito/adaptuoto pasirinkimo"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "užbaigti įterpimus"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "praplėsti įterpimus"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "abu iš paminėtų"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nei vieną iš paminėtų"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4580,23 +4774,6 @@ msgstr ""
msgid "Add an event"
msgstr "Pridėti naują serverį"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveris neatsako"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalės..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4671,9 +4848,9 @@ msgstr "Ilgis/reikšmės*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4732,11 +4909,6 @@ msgstr "Saugumas"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentaras"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4801,6 +4973,23 @@ msgstr ""
"Gali būti apytikslis. Žiūrėkite [a@./Documentation."
"html#faq3_11@Documentation]DUK 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveris neatsako"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(arba vietiniai MySQL serverio socketai yra blogai sukonfigūruoti)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalės..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4941,8 +5130,8 @@ msgstr ", @TABLE@ taps lentelės pavadinimu"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ši reikšmė interpretuojama naudojant %1$sstrftime%2$s, taigi Jūs galite "
"keisti laiko formatavimą. Taip pat pakeičiamos šios eilutės: %3$s. Kitas "
@@ -5679,8 +5868,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5982,46 +6171,6 @@ msgstr "Rodinys (Views)"
msgid "Export contents"
msgstr "Eksportuoti turinį"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Įkeltas failas viršija upload_max_filesize nurodymą faile php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Įkeltas failas viršija MAX_FILE_SIZE nurodymą kuris buvo nustatytas HTML "
-"formoje."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Įkeliamas failas buvo tik dalinai įkeltas."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Trūksta laikino katalogo."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nepavyko įrašyti failo į diską."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Failo įkėlimas sustabdytas dėl failo plėtinio."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nežinoma klaida failų įkėlime."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Klaida perkeliant įkeltą failą, žiūrėti [a@./Documentation."
-"html#faq1_11@Documentation]DUK 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6041,6 +6190,41 @@ msgstr "SQL rezultatas"
msgid "Generated by"
msgstr "Sugeneravo"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Eiti į duomenų bazę"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nustatymai"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Eiti į lentelę"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Eiti į rodinį (view)"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6104,41 +6288,6 @@ msgstr "Stulpelių vardai"
msgid "This plugin does not support compressed imports!"
msgstr "Priedas nepalaiko suglaudintų importų!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Sekanti struktūra buvo sukurta arba pakeista. Čia galite:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Peržiūrėti struktūros turinį paspaudžiant ant vardo"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Keisti bet kuriuos iš šių nustatymų spauskite atitinkamą „Nustatymai“ nuorodą"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Keisti jo struktūrą spauskite „Struktūra“ nuorodą"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Eiti į duomenų bazę"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nustatymai"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Eiti į lentelę"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Eiti į rodinį (view)"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6164,41 +6313,6 @@ msgstr ""
"XML failo specifikacija yra neteisinga arba neišbaigta. Prašome pataisyti "
"klaidas ir bandyti dar kartą."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nėra aprašytų indeksų!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikalus"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Suspausta"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Elementų skaičius"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Panaikintas pirminis raktas"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksas %s ištrintas"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Žurnalai %1$s ir %2$s atrodo vienodi ir vienas iš jų gali būti pašalintas."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6211,30 +6325,6 @@ msgstr "Nėra"
msgid "Convert to Kana"
msgstr "Konvertuoti į Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Pakeista %1$d eilutė."
-msgstr[1] "Pakeistos %1$d eilutės."
-msgstr[2] "Pakeista %1$d eilučių."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Ištrinta %1$d eilutė."
-msgstr[1] "Ištrintos %1$d eilutės."
-msgstr[2] "Ištrinta %1$d eilučių."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Įterpta %1$d eilutė."
-msgstr[1] "Įterptos %1$d eilutės."
-msgstr[2] "Įterpta %1$d eilučių."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6477,24 +6567,6 @@ msgstr "Atsiųsti iš naujo navigacijos rėmelį"
msgid "This format has no options"
msgstr "Šis formatas neturi nustatymų"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Nepavyko išsaugoti konfigūracijos"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Suskaičiuoti lenteles"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Nėra jokių sukonfigūruotų serverių"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Negerai"
@@ -6882,6 +6954,63 @@ msgstr "Skirtumas"
msgid "Target database"
msgstr "Į duomenų bazę"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Vykdyti SQL sakinius serveryje %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Išvalyti"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Stulpelių vardai"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Šios SQL užklausą pasižymėti kaip"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Leisti kitiems vartotojams naudotis šia žyme"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nekeisti šios užklausos už aktyvaus lango ribų."
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Skyriklis"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Rodyti šią užklausą vėl "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Peržiūra"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Tekstinio failo vieta"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web serverio katalogas atsiuntimams"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6944,63 +7073,6 @@ msgstr "Klaidingas vardas"
msgid "Unknown Punctuation String"
msgstr "Klaidinga skyryba"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Vykdyti SQL sakinius serveryje %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Vykdyti SQL sakinius duomenų bazėje %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Išvalyti"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Stulpelių vardai"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Šios SQL užklausą pasižymėti kaip"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Leisti kitiems vartotojams naudotis šia žyme"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Pakeisti jau egzistuojančią žymę tuo pačiu vardu"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nekeisti šios užklausos už aktyvaus lango ribų."
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Skyriklis"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Rodyti šią užklausą vėl "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Peržiūra"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Tekstinio failo vieta"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web serverio katalogas atsiuntimams"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7010,48 +7082,6 @@ msgstr ""
"Neveikia SQL interpretatorius. Prašome patikrinkite ar yra suinstaliuoti "
"visi privalomi php moduliai, nurodyti %sdokumentacijoje%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Apie šio Saugojimo Variklio būseną nėra išsamios informacijos."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s galimas šiame MySQL serveryje."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s šiame MySQL serveryje yra išjungtas."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Šis MySQL serveris nepalaiko %s saugojimo variklio."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neteisingas duomenų bazės vardas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neteisingas lentelės vardas"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Klaida pervadinant lentelę iš %1$s į %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Lentelė %s pervadinta į %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Lentelė atrodo tuščia!"
@@ -7175,38 +7205,6 @@ msgstr "SKAIDINIO (PARTITION) apibrėžimas"
msgid "+ Add a value"
msgstr "Pridėti naują serverį"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nerasta tinkamo paveiksliukų kelio temai %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Peržiūra negalima."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "pasirinkti"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standartinė tema %s nerasta!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nerasta!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Kelias iki temos nerastas temai %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8296,8 +8294,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Pastaba: phpMyAdmin gauna vartotojų teises tiesiai iš MySQL privilegijų "
"lentelės. Šiose lentelėse nurodytos teisės gali skirtis nuo nustatymų "
@@ -9789,9 +9787,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/lv.po b/po/lv.po
index f0de4b9ffd..fb3f6a51e9 100644
--- a/po/lv.po
+++ b/po/lv.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:16+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: latvian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Meklēt"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Meklēt"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Aiziet!"
@@ -119,7 +119,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Datubāze %s tika izdzēsta."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Datubāzes komentārs: "
@@ -129,9 +129,9 @@ msgstr "Datubāzes komentārs: "
msgid "Table comments"
msgstr "Komentārs tabulai"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komentārs tabulai"
msgid "Column"
msgstr "Kolonnu nosaukumi"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonnu nosaukumi"
msgid "Type"
msgstr "Tips"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Linki uz"
msgid "Comments"
msgstr "Komentāri"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Komentāri"
msgid "No"
msgstr "Nē"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,82 +260,82 @@ msgstr "Neiezīmēt neko"
msgid "The database name is empty!"
msgstr "Datubāzes nosaukums ir tukšs!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Datubāze %s tika pārsaukta par %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Datubāze %s tika pārkopēta uz %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Pārsaukt datubāzi par"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Pārsaukt datubāzi par"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Datubāze %s tika izdzēsta."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nav datubāzu"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopēt datubāzi uz"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tikai struktūra"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktūra un dati"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Tikai dati"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Pievienot AUTO_INCREMENT vērtību"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Pievienot ierobežojumus"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Pārslēgties uz nokopēto datubāzi"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -345,7 +344,7 @@ msgstr "Pārslēgties uz nokopēto datubāzi"
msgid "Collation"
msgstr "Izkārtojumi"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +356,7 @@ msgstr ""
"Papildiespējas darbam ar saistītām tabulām tika izslēgtas. Lai uzzinātu "
"kāpēc, klikškiniet %sšeit%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -510,102 +509,102 @@ msgstr "SQL vaicājums uz datubāzes %s:"
msgid "Submit Query"
msgstr "Izpildīt vaicājumu"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Jūsu SQL vaicājums tika veiksmīgi izpildīts"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL atgrieza tukšo rezultātu (0 rindas)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL teica: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procesi"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tabulas nav atrastas šajā datubāzē."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabula %s tika izdzēsta"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabula %s tika izdzēsta"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Servera versija"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -742,8 +741,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -811,8 +810,8 @@ msgstr "Izdrukas versija"
msgid "Empty"
msgstr "Iztukšot"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -890,9 +889,9 @@ msgstr ""
msgid "Status"
msgstr "Statuss"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,8 +989,8 @@ msgstr "Damps tika saglabāts failā %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1171,11 +1170,11 @@ msgstr "Dzēst izvēlētos lietotājus"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Labot"
@@ -1799,6 +1798,215 @@ msgstr "lietošanā"
msgid "Second"
msgstr "sekundē"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nav definēti indeksi!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikālais"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitāte"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentāri"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primārā atslēga tika izdzēsta"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indekss %s tika izdzēsts"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Datubāzes"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Kļūda"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Rindas nav iezīmētas"
+msgstr[1] "Rindas nav iezīmētas"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Rindas nav iezīmētas"
+msgstr[1] "Rindas nav iezīmētas"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nav tabulu"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabula %s tika pārsaukta par %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "izmantot šo stilu"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nevar pieslēgties: kļūda konfigurācijā."
@@ -1812,8 +2020,8 @@ msgstr "Laipni lūgti %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1919,14 +2127,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL konekcijas kārtošana"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Kļūda"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1979,11 +2179,6 @@ msgstr "Tabulas"
msgid "Data"
msgstr "Dati"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2265,8 +2460,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Neaizvērtas pēdiņas"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktūra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktūra un dati"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Pilnas INSERT izteiksmes"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Paplašinātas INSERT izteiksmes"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2936,12 +3208,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Datubāzes"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4472,87 +4738,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Neaizvērtas pēdiņas"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktūra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktūra un dati"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Pilnas INSERT izteiksmes"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Paplašinātas INSERT izteiksmes"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4620,23 +4805,6 @@ msgstr ""
msgid "Add an event"
msgstr "Pievienot jaunu lietotāju"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveris neatbild"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4709,9 +4877,9 @@ msgstr "Garums/Vērtības*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4771,12 +4939,6 @@ msgstr "Vaicājuma tips"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentāri"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4837,6 +4999,23 @@ msgid ""
"3.11[/a]"
msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveris neatbild"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5000,8 +5179,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5731,8 +5910,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6050,43 +6229,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Var būt aptuvens skaits. Skatīt FAQ 3.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6104,6 +6246,41 @@ msgstr "SQL rezultāts"
msgid "Generated by"
msgstr "Uzģenerēja"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nav datubāzu"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6165,41 +6342,6 @@ msgstr "Kolonnu nosaukumi"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nav datubāzu"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6224,40 +6366,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nav definēti indeksi!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikālais"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitāte"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primārā atslēga tika izdzēsta"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indekss %s tika izdzēsts"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6270,29 +6378,6 @@ msgstr "Nav"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Rindas nav iezīmētas"
-msgstr[1] "Rindas nav iezīmētas"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Rindas nav iezīmētas"
-msgstr[1] "Rindas nav iezīmētas"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6537,19 +6622,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Šim formātam nav opciju"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nav tabulu"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nav OK"
@@ -6940,6 +7012,64 @@ msgstr ""
msgid "Target database"
msgstr "Meklēt datubāzē"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendārs"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Kolonnu nosaukumi"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Saglabāt šo SQL vaicājumu"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Rādīt šo vaicājumu šeit atkal "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tikai apskatīt"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Teksta faila atrašanās vieta"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web servera augšupielādes direktorija"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7003,64 +7133,6 @@ msgstr "Nederīgs identifikators"
msgid "Unknown Punctuation String"
msgstr "Nezināmā punktuācijas zīme"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izpildīt SQL vaicājumu(s) uz datubāzes %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendārs"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Kolonnu nosaukumi"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Saglabāt šo SQL vaicājumu"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dot ikvienam lietotājam pieeju šai grāmatzīmei"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nepārrakstīt šo vaicājumu ārpus šī loga"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Rādīt šo vaicājumu šeit atkal "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tikai apskatīt"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Teksta faila atrašanās vieta"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web servera augšupielādes direktorija"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7070,48 +7142,6 @@ msgstr ""
"Nevar inicializēt SQL pārbaudītāju. Lūdzu pārbaudiet, vai esat uzinstalējuši "
"nepieciešamos PHP paplašinājumus, kā aprakstīts %sdokumentācijā%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabula %s tika pārsaukta par %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7240,38 +7270,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Pievienot jaunu lietotāju"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "izmantot šo stilu"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8358,13 +8356,13 @@ msgstr "Dzēst datubāzes, kurām ir tādi paši vārdi, kā lietotājiem."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Piezīme: phpMyAdmin saņem lietotāju privilēģijas pa taisno no MySQL "
"privilēģiju tabilām. Šo tabulu saturs var atšķirties no privilēģijām, ko "
-"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams %"
-"spārlādēt privilēģijas%s pirms Jūs turpināt."
+"lieto serveris, ja tur tika veikti labojumi. Šajā gadījumā ir nepieciešams "
+"%spārlādēt privilēģijas%s pirms Jūs turpināt."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
diff --git a/po/mk.po b/po/mk.po
index 63162b58a4..2213346a02 100644
--- a/po/mk.po
+++ b/po/mk.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-05-19 17:04+0200\n"
"Last-Translator: \n"
"Language-Team: macedonian_cyrillic \n"
+"Language: mk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: mk\n"
"Plural-Forms: nplurals=2; plural=n==1 || n%10==1 ? 0 : 1;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Пребарување"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Пребарување"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Базата на податоци %1$s е креирана"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар на базата на податоци:"
@@ -130,9 +130,9 @@ msgstr "Коментар на базата на податоци:"
msgid "Table comments"
msgstr "Коментар на табелата"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Коментар на табелата"
msgid "Column"
msgstr "Имиња на колони"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Имиња на колони"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Врски кон"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,80 +261,80 @@ msgstr "ништо"
msgid "The database name is empty!"
msgstr "Името на базата на податоци не е зададено!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Базата на податоци %s е преименувана во %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Базата на податоци %s е ископирана во %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименувај ја базата на податоци во"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Избриши ја базата на податоци."
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Базата на податоци %s не е прифатена"
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Базата на податоци не постои"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копирај ја базата на податоци во"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структура"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и податоци"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Само податоци"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE пред копирање"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Додади AUTO_INCREMENT вредност"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Додади ограничувања"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Префрли се на копираната база на податоци"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Префрли се на копираната база на подато
msgid "Collation"
msgstr "Подредување"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +355,7 @@ msgstr ""
"Дополнителните можности за работа со поврзаните табели се исклучени. За да "
"дознаете зошто, кликнете %sовде%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -509,104 +508,104 @@ msgstr "SQL упит на базата на податоци %s:"
msgid "Submit Query"
msgstr "Изврши SQL"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Вашиот SQL упит успешно е извршен"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дозволува извршување на stored рутини."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL врати празен резултат (нула записи)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL порака: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
msgid "Error in processing request"
msgstr "Листа на процеси"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Табелите не се пронајдени во базата на податоци."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Табелата %s е избришана"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Табелата %s е избришана"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Верзија на серверот"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Routines"
msgid "Edit routine"
msgstr "Рутини"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -743,8 +742,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -812,8 +811,8 @@ msgstr "Преглед за печатење"
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -886,9 +885,9 @@ msgstr "Ажурирано"
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -986,8 +985,8 @@ msgstr "Содржината на базата на податоци е сочу
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1166,11 +1165,11 @@ msgstr "Избриши ги селектираните корисници"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1795,6 +1794,217 @@ msgstr "се користи"
msgid "Second"
msgstr "во секунда"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Бројот на записи може да биде приближен. За подетални информации види FAQ "
+"3.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Клучот не е дефиниран!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Клучеви"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Единствен"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Коментари"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Примарниот клуч е избришан"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Клучот %s е избиршан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "База на податоци"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Нема селектирани записи"
+msgstr[1] "Нема селектирани записи"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Нема селектирани записи"
+msgstr[1] "Нема селектирани записи"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Нема табела"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Нема детални информации за статусот на овој вид на складиште."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s е достапен на овој MySQL сервер."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s е оневозможен на овој MySQL сервер."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Овој MySQL сервер не подржува %s вид на складиште."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табелата %s е преименувана во %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "превземи"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Не може да се поврзам: лоши подесувања."
@@ -1808,8 +2018,8 @@ msgstr "%s Добредојдовте"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1916,14 +2126,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Колација за MySQL врска"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1976,11 +2178,6 @@ msgstr "Табели"
msgid "Data"
msgstr "Податоци"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Клучеви"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2265,8 +2462,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Наводникот не е затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структура и податоци"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Комплетен INSERT (со имиња на полињата)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Проширен INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2939,12 +3213,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "База на податоци"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4481,87 +4749,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Наводникот не е затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структура и податоци"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Комплетен INSERT (со имиња на полињата)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Проширен INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4629,23 +4816,6 @@ msgstr ""
msgid "Add an event"
msgstr "Додади нов корисник"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Серверот не одговара"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4718,9 +4888,9 @@ msgstr "Должина/Вредност*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4780,12 +4950,6 @@ msgstr "Вид на упит"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Коментари"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4850,6 +5014,23 @@ msgstr ""
"Бројот на записи може да биде приближен. За подетални информации види FAQ "
"3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Серверот не одговара"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(или приклучокот со локалниот MySQL сервер не е исправно подесен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5013,8 +5194,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5764,8 +5945,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6084,45 +6265,6 @@ msgstr "Поглед"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Бројот на записи може да биде приближен. За подетални информации види FAQ "
-"3.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6140,6 +6282,41 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерирал"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Базата на податоци не постои"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6201,41 +6378,6 @@ msgstr "Имиња на колони"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Базата на податоци не постои"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6260,40 +6402,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Клучот не е дефиниран!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Единствен"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Примарниот клуч е избришан"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Клучот %s е избиршан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6306,29 +6414,6 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Нема селектирани записи"
-msgstr[1] "Нема селектирани записи"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Нема селектирани записи"
-msgstr[1] "Нема селектирани записи"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6573,19 +6658,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Не постојат опции за овој формат"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Нема табела"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не е како што треба"
@@ -6977,6 +7049,64 @@ msgstr ""
msgid "Target database"
msgstr "Пребарување низ базата на податоци"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изврши SQL упит(и) на базата %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изврши SQL упит(и) на базата %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Календар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Имиња на колони"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Запамти SQL упит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "дади дозвола на секој корисник да пристапува на овој упит."
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не го препишувај овој упит надвор од овој прозорец"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Прикажи го повторно овој упит"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Види само"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Локација на текстуалната податотека"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директориум за праќање на веб серверот "
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7039,64 +7169,6 @@ msgstr "Неисправен идентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат стринг за интерпункција"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изврши SQL упит(и) на базата %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изврши SQL упит(и) на базата %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Календар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Имиња на колони"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Запамти SQL упит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "дади дозвола на секој корисник да пристапува на овој упит."
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не го препишувај овој упит надвор од овој прозорец"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Прикажи го повторно овој упит"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Види само"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Локација на текстуалната податотека"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директориум за праќање на веб серверот "
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7106,48 +7178,6 @@ msgstr ""
"SQL валидаторот не можеше да биде стартуван. Проверете да ли се инсталирани "
"неопходните PHP екстензии опишане во %sдокументацијата%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Нема детални информации за статусот на овој вид на складиште."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s е достапен на овој MySQL сервер."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s е оневозможен на овој MySQL сервер."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Овој MySQL сервер не подржува %s вид на складиште."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табелата %s е преименувана во %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7277,38 +7307,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Додади нов корисник"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "превземи"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8422,8 +8420,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin ги зема привилегиите на корисникот директно од MySQL "
"табелата на привилегии. Содржината на оваа табела табела може да се "
diff --git a/po/ml.po b/po/ml.po
index 072f367147..988b4c9e1a 100644
--- a/po/ml.po
+++ b/po/ml.po
@@ -5,14 +5,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-02-10 14:03+0100\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: Malayalam \n"
+"Language: ml\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ml\n"
"X-Generator: Translate Toolkit 1.7.0\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -43,13 +43,13 @@ msgstr ""
msgid "Search"
msgstr ""
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
@@ -128,9 +128,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -139,12 +139,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -154,9 +154,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -194,13 +194,12 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -211,17 +210,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -258,79 +257,79 @@ msgstr ""
msgid "The database name is empty!"
msgstr ""
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr ""
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr ""
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -339,14 +338,14 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -492,97 +491,97 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr ""
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
msgid "No routine with name %1$s found in database %2$s"
msgstr ""
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr ""
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr ""
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr ""
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -708,8 +707,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -776,8 +775,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -850,9 +849,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -944,8 +943,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1111,11 +1110,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1642,6 +1641,210 @@ msgstr ""
msgid "Second"
msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr ""
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr ""
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1655,8 +1858,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1755,14 +1958,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr ""
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1815,11 +2010,6 @@ msgstr ""
msgid "Data"
msgstr ""
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2096,8 +2286,76 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2728,12 +2986,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4201,78 +4453,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4336,23 +4516,6 @@ msgstr ""
msgid "Add an event"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4420,9 +4583,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4469,11 +4632,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4530,6 +4688,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4668,8 +4843,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5359,8 +5534,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5641,42 +5816,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5694,6 +5833,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5753,40 +5926,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5809,40 +5948,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5853,27 +5958,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6112,18 +6196,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6493,57 +6565,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6599,6 +6620,57 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6606,48 +6678,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6752,38 +6782,6 @@ msgstr ""
msgid "+ Add a value"
msgstr ""
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7732,8 +7730,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/mn.po b/po/mn.po
index 40550eb79f..d0de163427 100644
--- a/po/mn.po
+++ b/po/mn.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: mongolian \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -43,13 +43,13 @@ msgstr ""
msgid "Search"
msgstr "Хайх"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr "Хайх"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Яв"
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ӨС-ийн тайлбар: "
@@ -128,9 +128,9 @@ msgstr "ӨС-ийн тайлбар: "
msgid "Table comments"
msgstr "Хүснэгтийн тайлбар"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "Хүснэгтийн тайлбар"
msgid "Column"
msgstr "Баганын нэрс"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "Баганын нэрс"
msgid "Type"
msgstr "Төрөл"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +196,12 @@ msgstr "Холбоос"
msgid "Comments"
msgstr "Тайлбар"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +212,17 @@ msgstr "Тайлбар"
msgid "No"
msgstr "Үгүй"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -260,83 +259,83 @@ msgstr "Бүх сонгосныг болих"
msgid "The database name is empty!"
msgstr "Өгөгдлийн сангийн нэр хоосон!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "ӨС %s-н нэр нь %s-ээр солигджээ"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "ӨС %s нь %s руу хуулагдлаа"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Команд"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Өгөгдлийн санг д.нэрлэх нь"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s өгөгдлийн сан устгагдсан."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
#| msgid "Copy database to"
msgid "Drop the database (DROP)"
msgstr "Өгөгдлийн сан хуулах нь"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Өгөгдлийн сан хуулах нь"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Зөвхөн бүтэц"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Бүтэц ба өгөгдөл"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Зөвхөн өгөгдөл"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "хуулахын өмнө CREATE DATABASE"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Нэмэх %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT утга нэмэх"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Тогтмол нэмэх"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Хуулагдсан ӨС руу шилжих"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -345,7 +344,7 @@ msgstr "Хуулагдсан ӨС руу шилжих"
msgid "Collation"
msgstr "Жишилт"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -357,7 +356,7 @@ msgstr ""
"Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%s "
"дарж шалгах."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -510,106 +509,106 @@ msgstr "ӨС %s дахь SQL-асуулт:"
msgid "Submit Query"
msgstr "Асуултыг илгээх"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Таны SQL-асуулт амжилттай ажиллав"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Хадгалагдсан заншлыг ажиллуулахыг зөвшөөрөх."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL хоосон үр дүн буцаалаа (тэг мөрүүд г.м.)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL хэлэх нь: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Процессууд"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "ӨС-д хүснэгт олдсонгүй."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Сервэрийн буруу индекс нь: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Хүснэгт %s нь устгагдлаа"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been created."
msgstr "Хүснэгт %s нь устгагдлаа"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Холбоо үүсгэх"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -746,8 +745,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -814,8 +813,8 @@ msgstr "Хэвлэхээр харах"
msgid "Empty"
msgstr "Хоосон"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -892,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -987,8 +986,8 @@ msgstr "Асгалт %s файлд хадгалагдсан."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1168,11 +1167,11 @@ msgstr "Сонгогдсон хэрэглэгчдийг хасах"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Засах"
@@ -1805,6 +1804,216 @@ msgstr "хэрэглэгдэж байна"
msgid "Second"
msgstr "секундэд"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Үсгийн хэмжээ"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс тодорхойлогдоогүй!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индексүүд"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Үл давтагдах"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Ерөнхий"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Үндсэн түлхүүр устгагдлаа"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекс %s нь устгагдсан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Өгөгдлийн сангууд"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Алдаа"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Сонгогдсон мөргүй"
+msgstr[1] "Сонгогдсон мөргүй"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Сонгогдсон мөргүй"
+msgstr[1] "Сонгогдсон мөргүй"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Хүснэгтүүд сонго"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s нь уг MySQL сервэрт идэвхтэй байна."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Буруу өгөгдлийн сан"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Хүснэгтийн буруу нэр"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Боломжит харагдац байхгүй байна."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "авах"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Анхдагч сэдэв %s байхгүй байна!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Сэдэв %s олдсонгүй!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Холбогдсонгүй: тохируулга буруу."
@@ -1818,11 +2027,11 @@ msgstr "%s-д тавтай морилно уу"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та %1"
-"$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
+"Үүний шалтгаан нь магадгүй та тохиргооны файл үүсгээгүй байж болох юм. Та "
+"%1$ssetup script%2$s -ийг ашиглаж нэгийг үүсгэж болно."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1924,14 +2133,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL холболтын кодлол"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Алдаа"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1984,11 +2185,6 @@ msgstr "Хүснэгт"
msgid "Data"
msgstr "Өгөгдөл"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индексүүд"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2277,9 +2473,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Үсгийн хэмжээ"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Хаагдаагүй хашилт"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Бүтэц ба өгөгдөл"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Оруулалтыг дуусгах"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Өргөтгөсөн оруулалт"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2945,12 +3217,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Өгөгдлийн сангууд"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4472,86 +4738,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Хаагдаагүй хашилт"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Бүтэц ба өгөгдөл"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Оруулалтыг дуусгах"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Өргөтгөсөн оруулалт"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4620,23 +4806,6 @@ msgstr ""
msgid "Add an event"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервэрээс хариу алга"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4709,9 +4878,9 @@ msgstr "Урт/Утгууд*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4770,11 +4939,6 @@ msgstr "Асуултын төрөл"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4835,6 +4999,23 @@ msgid ""
"3.11[/a]"
msgstr "May be approximate. See FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервэрээс хариу алга"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(эсвэл дотоод MySQL сервэрийн socket нь зөв тохируулагдаагүй)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5002,12 +5183,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Энэ утга нь %1$sstrftime%2$s -ийг хэрэглэж үүссэн, тиймээс та хугацааны "
-"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: %"
-"3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
+"тогтнолын тэмдэгтийг хэрэглэж болно. Нэмэлтээр дараах хувиргалт байх болно: "
+"%3$s. Бусад бичвэрүүд үүн шиг хадгалагдана."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5762,8 +5943,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6081,42 +6262,6 @@ msgstr "Харц"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6134,6 +6279,40 @@ msgstr "SQL-үр дүн"
msgid "Generated by"
msgstr "Үүсгэгч"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6196,40 +6375,6 @@ msgstr "Баганын нэрс"
msgid "This plugin does not support compressed imports!"
msgstr "Энэ нэмэлт нь шахагдсан оруулалтыг дэмжихгүй!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6254,40 +6399,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс тодорхойлогдоогүй!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Үл давтагдах"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Ерөнхий"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Үндсэн түлхүүр устгагдлаа"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекс %s нь устгагдсан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6300,29 +6411,6 @@ msgstr "Байхгүй"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Сонгогдсон мөргүй"
-msgstr[1] "Сонгогдсон мөргүй"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Сонгогдсон мөргүй"
-msgstr[1] "Сонгогдсон мөргүй"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6567,22 +6655,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Энэ тогтнол сонголтгүй"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Анхдагч тохиргоо дуудагдсангүй нь: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Хүснэгтүүд сонго"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Бэлэн биш"
@@ -6971,6 +7043,63 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Баганын нэрс"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Зааглагч"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Уг асуултыг энд дахин харуулах "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Зөвхөн харах"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Бичвэрфайлын байрлал"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-сервэр түлхэх хавтас"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7033,63 +7162,6 @@ msgstr "Буруу тодорхойлогч"
msgid "Unknown Punctuation String"
msgstr "Тэмдэгт мөрийн үл мэдэх цэг тэмдэглэл"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s сервэр дээр SQL асуудал/асуудлууд ажиллуулах"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Өгөгдлийн сан %s дээрх SQL асуултыг ажиллуулах"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Баганын нэрс"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Энэ SQL-асуулт-ыг тэмдэглэх"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Энэ тэмдэглэгээг бүх хэрэглэгчид хандахыг зөвшөөрөх"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Өмнөх адил нэртэй тэмдэглэлийг солих"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Цонхны гаднаас энэ асуултыг давхарлахгүй байх"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Зааглагч"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Уг асуултыг энд дахин харуулах "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Зөвхөн харах"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Бичвэрфайлын байрлал"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-сервэр түлхэх хавтас"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7099,48 +7171,6 @@ msgstr ""
"SQL баталгаажуулагч эхлэгдсэнгүй. Хэрэв PHP өргөтгөл суугдсан бол шалгана "
"уу, %sбаримтжуулалд%s тодорхойлогдсон."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Энд уг агуулах хөдөлгүүрийн дэлгэрэнгүй төлвийн мэдээлэл алга."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s нь уг MySQL сервэрт идэвхтэй байна."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s нь уг MySQL сервэр дээр хаалттай байна."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Энэ MySQL сервэр нь %s агуулах хөдөлгүүрийг дэмжихгүй."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Буруу өгөгдлийн сан"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Хүснэгтийн буруу нэр"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Хүснэгт %s-ын нэр %s болж өөрчлөгдлөө"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Хүснэг хоосон үзэгдэж байна!"
@@ -7270,38 +7300,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Шинэ хэрэглэгч нэмэх"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Сэдэв %s-д олдсон зургийн зам буруу байна!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Боломжит харагдац байхгүй байна."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "авах"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Анхдагч сэдэв %s байхгүй байна!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Сэдэв %s олдсонгүй!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Сэдэв %s сэдвийн зам олдохгүй байна!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8386,8 +8384,8 @@ msgstr "Хэрэглэгчтэй адил нэртэй өгөгдлийн сан
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Тэмдэглэл: phpMyAdmin нь MySQL-ийн онцгой эрхийн хүснэгтээс хэрэглэгчдийн "
"онцгой эрхийг авна. Хэрэв тэд гараар өөрчлөгдсөн бол эдгээр хүснэгтийн "
@@ -10768,8 +10766,8 @@ msgstr ""
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд%"
-#~ "s дарж шалгах."
+#~ "Холбогдсон хүснэгтүүдтэй ажиллах нэмэлт онцлогууд идэвхгүй болжээ. %sЭнд"
+#~ "%s дарж шалгах."
#~ msgid "Ignore duplicate rows"
#~ msgstr "Давхардсан мөрүүдийг алгасах"
diff --git a/po/ms.po b/po/ms.po
index 9bf3200da0..555f608555 100644
--- a/po/ms.po
+++ b/po/ms.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:17+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: malay \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -41,13 +41,13 @@ msgstr ""
msgid "Search"
msgstr "Cari"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -60,18 +60,18 @@ msgstr "Cari"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Pergi"
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "angkalan data %s telah digugurkan."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
#, fuzzy
msgid "Database comment: "
msgstr "Komen jadual"
@@ -129,9 +129,9 @@ msgstr "Komen jadual"
msgid "Table comments"
msgstr "Komen jadual"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Komen jadual"
msgid "Column"
msgstr "Nama Kolum"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Nama Kolum"
msgid "Type"
msgstr "Jenis"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Pautan ke"
msgid "Comments"
msgstr "Komen"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Komen"
msgid "No"
msgstr "Tidak"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,83 +261,83 @@ msgstr "Nyahpilih Semua"
msgid "The database name is empty!"
msgstr "Nama jadual adalah kosong"
-#: db_operations.php:271
+#: db_operations.php:272
#, fuzzy, php-format
msgid "Database %s has been renamed to %s"
msgstr "Jadual %s telah ditukarnama ke %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, fuzzy, php-format
msgid "Database %s has been copied to %s"
msgstr "Jadual %s telah disalin ke %s."
-#: db_operations.php:403
+#: db_operations.php:404
#, fuzzy
msgid "Rename database to"
msgstr "Tukarnama jadual ke"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Arahan"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
msgid "Remove database"
msgstr "Tukarnama jadual ke"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "angkalan data %s telah digugurkan."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Tiada pangkalan data"
-#: db_operations.php:486
+#: db_operations.php:487
#, fuzzy
msgid "Copy database to"
msgstr "Tiada pangkalan data"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Struktur sahaja"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur dan data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Data sahaja"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Tambah %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Tukar kepada pengkalan data yang di salin"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -347,7 +346,7 @@ msgstr "Tukar kepada pengkalan data yang di salin"
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -359,7 +358,7 @@ msgstr ""
"Ciri-ciri tambahan ini adalah untuk bekerja dengan pautan jadual yang telah "
"tidak diaktifkan. Untuk mengetahuinya klik %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -513,102 +512,102 @@ msgstr "SQL- kueri pada pangkalan data %s:"
msgid "Submit Query"
msgstr "Hantar Kueri"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Kueri-SQL anda telah dilaksanakan dengan jaya"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL memulangkan set hasil kosong (i.e. sifar baris)"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL berkata: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Proses-proses"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tiada jadual dijumpai pada pangkalan data."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Jadual %s telah digugurkan"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Jadual %s telah digugurkan"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Versi Pelayan"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -745,8 +744,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -813,8 +812,8 @@ msgstr "Paparan Cetak"
msgid "Empty"
msgstr "Kosong"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -892,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -990,8 +989,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1164,11 +1163,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ubah"
@@ -1787,6 +1786,212 @@ msgstr "sedang digunakan"
msgid "Second"
msgstr "Rekod"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Tiada indeks ditafrifkan!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeks"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliti"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komen"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kekunci utama telah digugurkan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s telah digugurkan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "pangkalan data"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Ralat"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Tiada Jadual"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Jadual %s telah ditukarnama ke %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1800,8 +2005,8 @@ msgstr "Selamat Datang ke %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1901,14 +2106,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Ralat"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1961,11 +2158,6 @@ msgstr "Jadual-jadual"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeks"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2246,8 +2438,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Tanda quote tidak disertakan"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktur dan data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kemasukkan Selesai"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Penyelitan Lanjutan"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2912,12 +3181,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "pangkalan data"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4434,87 +4697,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Tanda quote tidak disertakan"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktur dan data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kemasukkan Selesai"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Penyelitan Lanjutan"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4580,23 +4762,6 @@ msgstr ""
msgid "Add an event"
msgstr "Tambah Pengguna Baru"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4668,9 +4833,9 @@ msgstr "Panjang/Nilai*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4726,12 +4891,6 @@ msgstr "Jenis Kueri"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komen"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4791,6 +4950,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4951,8 +5127,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5679,8 +5855,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5985,42 +6161,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6038,6 +6178,41 @@ msgstr "Hasil SQL"
msgid "Generated by"
msgstr "Dijana oleh"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Tiada pangkalan data"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6099,41 +6274,6 @@ msgstr "Nama Kolum"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Tiada pangkalan data"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6156,40 +6296,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Tiada indeks ditafrifkan!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliti"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kekunci utama telah digugurkan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s telah digugurkan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6202,27 +6308,6 @@ msgstr "Tiada"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6464,19 +6549,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Tiada Jadual"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "tidak OK"
@@ -6864,6 +6936,63 @@ msgstr ""
msgid "Target database"
msgstr "Cari di pangkalan data"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Laksana kueri SQL pada pangkalan data %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Laksana kueri SQL pada pangkalan data %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nama Kolum"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "andabuku kueri-SQL ini"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Papar kueri ini di sini lagi "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Paparan sahaja"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokasi bagi fail teks"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktori muatnaik pelayan-web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6927,63 +7056,6 @@ msgstr "Pengenalan TidakSah"
msgid "Unknown Punctuation String"
msgstr "TandaBaca tidak dikenali"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Laksana kueri SQL pada pangkalan data %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Laksana kueri SQL pada pangkalan data %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nama Kolum"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "andabuku kueri-SQL ini"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Papar kueri ini di sini lagi "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Paparan sahaja"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokasi bagi fail teks"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktori muatnaik pelayan-web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6993,48 +7065,6 @@ msgstr ""
"Pengesahan SQL tidak dapat disahkan. Sila semak sama ada anda telah memasang "
"sambungan php seperti yang tercatit di %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Jadual %s telah ditukarnama ke %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7159,38 +7189,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Tambah Pengguna Baru"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8206,8 +8204,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/nb.po b/po/nb.po
index d621a7e484..35f6586321 100644
--- a/po/nb.po
+++ b/po/nb.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-03-07 11:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: norwegian \n"
+"Language: nb\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nb\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Søk"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Søk"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Utfør"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databasen %1$s har blitt opprettet."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database kommentar: "
@@ -131,9 +131,9 @@ msgstr "Database kommentar: "
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabellkommentarer"
msgid "Column"
msgstr "Kolonne"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolonne"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Linker til"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nei"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,79 +260,79 @@ msgstr "Fjern alle valgte"
msgid "The database name is empty!"
msgstr "Databasen er uten navn!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Databasen %s har endret navn til %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Databasen %s har blitt kopiert til %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Endre databasens navn til"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Fjern database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasen %s har blitt slettet"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Drop databasen (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopier databasen til"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Kun struktur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur og data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Bare data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE før kopiering"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Legg til %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Legg til AUTO_INCREMENT verdi"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Legg til begrensninger"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Bytt til kopiert database"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -342,7 +341,7 @@ msgstr "Bytt til kopiert database"
msgid "Collation"
msgstr "Sammenligning"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -350,7 +349,7 @@ msgid ""
msgstr ""
"phpMyAdmin konfigurasjonslager har blitt deaktivert. Finn ut hvorfor %sher%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Rediger eller eksporter relasjonsskjema"
@@ -496,110 +495,110 @@ msgstr "SQL-spørring i database %s:"
msgid "Submit Query"
msgstr "Kjør spørring"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Kommandoen/spørringen er utført"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Tillater utføring av lagrede rutiner."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerte ett tomt resultat (m.a.o. ingen rader)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Følgende spørringer har blitt utført:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Feil i prosesseringsforespørsel"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Ingen tabeller funnet i databasen"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Eksportinnstillinger"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Ugyldig tjenerindeks: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Kolonne %s har blitt slettet"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tabellen %1$s har blitt opprettet."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Opprett relasjon"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Redigeringsmodus"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -729,8 +728,8 @@ msgstr "Overvåkning er ikke aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denne visningen har minst dette antall rader. Sjekk %sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -797,8 +796,8 @@ msgstr "Utskriftsvennlig forhåndsvisning"
msgid "Empty"
msgstr "Tøm"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -877,9 +876,9 @@ msgstr "Oppdatert"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -974,8 +973,8 @@ msgstr "Dump har blitt lagret til fila %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du forsøkte sansynligvis å laste opp en for stor fil. Sjekk %sdokumentasjonen"
"%s for måter å omgå denne begrensningen."
@@ -1163,11 +1162,11 @@ msgstr "Fjern valgte brukere"
msgid "Close"
msgstr "Lukk"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Rediger"
@@ -1720,6 +1719,224 @@ msgstr "Minutt"
msgid "Second"
msgstr "Sekund"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Fontstørrelse"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
+"HTML-skjemaet."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Opplastingsfila ble bare delvis opplastet."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Mangler en midlertidig mappe."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Klarte ikke å skrive fila til harddisken."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filopplasting stoppet av utvidelse."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Ukjent feil oppstod under filopplastingen."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ingen indeks definert!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekser"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pakket"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primærnøkkelen har blitt slettet"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeksen %s har blitt slettet"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne "
+"fjernes."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaser"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Feil"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rad berørt."
+msgstr[1] "%1$d rader berørt."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rader slettet."
+msgstr[1] "%1$d rader slettet."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rader innsatt."
+msgstr[1] "%1$d rader innsatt."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "Kunne ikke lagre konfigurasjonen"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Tell tabeller"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Der finnes ingen konfigurerte tjenere"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s er tilgjengelig på denne MySQL theneren."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s har blitt dekativert for denne MySQL tjeneren."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ugylding database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ugylding tabellnavn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabellen %s har fått nytt navn %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Ingen forhandsvisning tilgjengelig."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "velg"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standard stil %s ble ikke funnet!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Stilen %s ble ikke funnet!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Stilsti ble ikke funnet for stilen %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ikke koble til: ugyldige innstillinger."
@@ -1733,8 +1950,8 @@ msgstr "Velkommen til %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"En mulig årsak for dette er at du ikke opprettet konfigurasjonsfila. Du bør "
"kanskje bruke %1$ssetup script%2$s for å opprette en."
@@ -1842,14 +2059,6 @@ msgstr "PBMS feil"
msgid "PBMS connection failed:"
msgstr "PBMS tilkoblingen feilet:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Feil"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS get BLOB info feilet:"
@@ -1902,11 +2111,6 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekser"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2187,9 +2391,77 @@ msgstr "Det er ingen filer å laste opp"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Fontstørrelse"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Begge"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Åpne"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Lukket"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur og data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hurtig - vis minimalt med konfigureringer"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Bruker - vis alle konfigureringer"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Bruker - som ovenfor, men uten hurtigoppsett"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "Komplette inserts"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Utvidete innlegg"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "begge ovenforstående"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ingen av de overstående"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2844,12 +3116,6 @@ msgstr "Set import and eksport mapper og komprimeringsinnstillinger"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaser"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Databasevisningsinnstillinger"
@@ -4488,78 +4754,6 @@ msgstr "Blankt phpMyAdmin kontrollbrukerpassord for bruk av pmadb"
msgid "Incorrect IP address: %s"
msgstr "Ugyldig IP addresse: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Begge"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Åpne"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Lukket"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur og data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hurtig - vis minimalt med konfigureringer"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Bruker - vis alle konfigureringer"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Bruker - som ovenfor, men uten hurtigoppsett"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "Komplette inserts"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Utvidete innlegg"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "begge ovenforstående"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ingen av de overstående"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4630,24 +4824,6 @@ msgstr ""
msgid "Add an event"
msgstr "Legg til en ny tjener"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Tjeneren svarer ikke"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detaljer..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4722,9 +4898,9 @@ msgstr "Lengde/Sett*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4783,11 +4959,6 @@ msgstr "Sikkerhet"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4852,6 +5023,24 @@ msgid ""
"3.11[/a]"
msgstr "Kan være unøyaktig. Se FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Tilkoblingen for kontrollbrukeren som definert i din konfigurasjon feilet."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Tjeneren svarer ikke"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokale MySQL tjenerens sokkel er ikke korrekt konfigurert)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detaljer..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4996,8 +5185,8 @@ msgstr ", @TABLE@ vil bli tabellnavnet"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Denne verdien blir tolket slik som %1$sstrftime%2$s, så du kan bruke "
"tidformateringsstrenger. I tillegg vil følgende transformasjoner skje: %3$s. "
@@ -5790,8 +5979,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6095,47 +6284,6 @@ msgstr "Visning"
msgid "Export contents"
msgstr "Eksporter innhold"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Opplastingsfila er større enn upload_max_filesize direktivet definert i php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Opplastingsfila er større enn MAX_FILE_SIZE direktivet som ble spesifisert i "
-"HTML-skjemaet."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Opplastingsfila ble bare delvis opplastet."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Mangler en midlertidig mappe."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Klarte ikke å skrive fila til harddisken."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filopplasting stoppet av utvidelse."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Ukjent feil oppstod under filopplastingen."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Feil oppstod under forsøk på flytting av den opplastede fila, se FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6155,6 +6303,43 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Generert av"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Vis en strukturs innhold ved å klikke på dens navn"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Endre noen av dens innstillinger ved å klikke på den tilhørende "
+"\"Innstillinger\" link"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gå til database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "innstillinger"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gå til tabell"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gå til visning"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6214,43 +6399,6 @@ msgstr "Kolonnenavn"
msgid "This plugin does not support compressed imports!"
msgstr "Dette tillegget støtter ikke komprimerte importeringer!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Følgende strukturer har enten blitt opprettet eller endret. Her kan du:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Vis en strukturs innhold ved å klikke på dens navn"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Endre noen av dens innstillinger ved å klikke på den tilhørende "
-"\"Innstillinger\" link"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Endre dens struktur ved å følge \"Struktur\" linken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gå til database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "innstillinger"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gå til tabell"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gå til visning"
-
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6283,42 +6431,6 @@ msgstr ""
"Den spesifiserte XML-fila var enten skadet eller ufulstendig. Korriger "
"problemet og prøv igjen."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ingen indeks definert!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pakket"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primærnøkkelen har blitt slettet"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeksen %s har blitt slettet"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksene %1$s og %2$s ser ut til å være like og en av dem burde kunne "
-"fjernes."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6329,27 +6441,6 @@ msgstr "Ingen"
msgid "Convert to Kana"
msgstr "Konverter til Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rad berørt."
-msgstr[1] "%1$d rader berørt."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rader slettet."
-msgstr[1] "%1$d rader slettet."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rader innsatt."
-msgstr[1] "%1$d rader innsatt."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6594,24 +6685,6 @@ msgstr "Endre navigasjonsrammen"
msgid "This format has no options"
msgstr "Dette formatet har ingen valg"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "Kunne ikke lagre konfigurasjonen"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Tell tabeller"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Der finnes ingen konfigurerte tjenere"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ikke OK"
@@ -7000,6 +7073,61 @@ msgstr "Differanse"
msgid "Target database"
msgstr "Måldatabase"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kjør SQL spørring/spørringer på tjener %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kjør SQL spørring/spørringer mot databasen %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Fjern"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolonner"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Lagre denne SQL-spørringen"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "La alle brukere ha adgang til dette bokmerket"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Erstatt eksisterende bokmerke med samme navn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ikke overskriv denne spørringen fra andre vinduer"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Skilletegn"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Vis denne spørring her igjen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Bare se"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Plassering av filen"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "webtjener opplastingskatalog"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7064,61 +7192,6 @@ msgstr "Ugyldig identifikator"
msgid "Unknown Punctuation String"
msgstr "Ukjent tegnsettingsstreng"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kjør SQL spørring/spørringer på tjener %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kjør SQL spørring/spørringer mot databasen %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Fjern"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolonner"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Lagre denne SQL-spørringen"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "La alle brukere ha adgang til dette bokmerket"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Erstatt eksisterende bokmerke med samme navn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ikke overskriv denne spørringen fra andre vinduer"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Skilletegn"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Vis denne spørring her igjen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Bare se"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Plassering av filen"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "webtjener opplastingskatalog"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7128,49 +7201,6 @@ msgstr ""
"SQL-kontrolleren kunne ikke startes. Vennligst sjekk at du har installert de "
"nødvendige php-tilleggene som beskrevet i %sdokumentasjonen%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Det er ikke noen detaljert statusinformasjon for denne lagringsmotoren."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s er tilgjengelig på denne MySQL theneren."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s har blitt dekativert for denne MySQL tjeneren."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denne MySQL tjeneren har ikke støtte for %s lagringsmotoren."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ugylding database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ugylding tabellnavn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Feil oppstond med endring av tabellnavn fra %1$s til %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabellen %s har fått nytt navn %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabellen ser ut til å være tom!"
@@ -7212,8 +7242,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"For en liste over tilgjengelige transformasjonsvalg, klikk på %"
-"stransformasjonsbeskrivelser%s"
+"For en liste over tilgjengelige transformasjonsvalg, klikk på "
+"%stransformasjonsbeskrivelser%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7291,38 +7321,6 @@ msgstr "Partisjonsdefinisjon"
msgid "+ Add a value"
msgstr "+ Legg til ny verdi"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen gyldig bildesti for stilen %s ble funnet!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Ingen forhandsvisning tilgjengelig."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "velg"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standard stil %s ble ikke funnet!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Stilen %s ble ikke funnet!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Stilsti ble ikke funnet for stilen %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8415,8 +8413,8 @@ msgstr "Slett databasene som har det samme navnet som brukerne."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Merk: phpMyAdmin får brukerprivilegiene direkte fra MySQL "
"privilegietabeller. Innholdet i disse tabellene kan være forskjellig fra de "
@@ -10019,8 +10017,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Hvis du føler at dette er nødvending, så bruk ekstra "
-"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
+"beskyttelsesinnstillinger - [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]vertsautentisering[/a] innstillinger og [a@?"
"page=form&formset=features#tab_Security]godkjente mellomlagerliste[/a]. "
"Merk at IP-basert beskyttelse ikke er så god hvis din IP tilhører en "
"Internettilbyder som har tusenvis av brukere, inkludert deg, tilknyttet."
@@ -10031,9 +10029,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/nl.po b/po/nl.po
index 8db956ada6..f8bba31a8f 100644
--- a/po/nl.po
+++ b/po/nl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-04 15:19+0200\n"
"Last-Translator: Dieter Adriaenssens \n"
"Language-Team: dutch \n"
+"Language: nl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: nl\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Zoeken"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Zoeken"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Start"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Database %1$s is aangemaakt."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Database opmerking: "
@@ -131,9 +131,9 @@ msgstr "Database opmerking: "
msgid "Table comments"
msgstr "Tabelopmerkingen"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Tabelopmerkingen"
msgid "Column"
msgstr "Kolom"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Kolom"
msgid "Type"
msgstr "Type"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Verwijst naar"
msgid "Comments"
msgstr "Opmerkingen"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Opmerkingen"
msgid "No"
msgstr "Nee"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,79 +260,79 @@ msgstr "Deselecteer alles"
msgid "The database name is empty!"
msgstr "De database naam is leeg!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Database %s is hernoemd naar %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s is gekopieerd naar %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Hernoem database naar"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Commando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Verwijder database"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Database %s is verwijderd."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Laat de database vervallen (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopieer database naar"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Alleen structuur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structuur en gegevens"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Alleen data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE voor het kopiëren"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Voeg %s toe"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Voeg AUTO_INCREMENT waarde toe"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Voeg beperkingen toe"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Overschakelen naar de gekopieerde database"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -342,7 +341,7 @@ msgstr "Overschakelen naar de gekopieerde database"
msgid "Collation"
msgstr "Collatie"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -351,7 +350,7 @@ msgstr ""
"De phpMyAdmin configuratie-opslag is uitgeschakeld. Om te weten te komen "
"waarom klik %shier%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Bewerk of exporteer relationeel schema"
@@ -497,110 +496,110 @@ msgstr "SQL-query op database %s:"
msgid "Submit Query"
msgstr "Query uitvoeren"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Uw SQL-query is succesvol uitgevoerd"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Maakt het mogelijk om stored routines uit te voeren."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL gaf een lege resultaat set terug (0 rijen)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "De volgende queries zijn uitgevoerd:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL retourneerde: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Fout tijdens het verwerken van de opdracht"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Geen tabellen gevonden in de database"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Export standaarden"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Ongeldige serverindex: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Kolom %s is verwijderd"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tabel %1$s is aangemaakt."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Maak relatie"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Wijzig-mode"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -730,8 +729,8 @@ msgstr "Tracking is niet actief."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Deze view heeft minimaal deze hoeveelheid aan rijen. Zie de %sdocumentatie%s."
@@ -799,8 +798,8 @@ msgstr "Afdrukken"
msgid "Empty"
msgstr "Legen"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -873,9 +872,9 @@ msgstr "Bijgewerkt"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -971,11 +970,11 @@ msgstr "Dump is bewaard als %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de %"
-"sdocumentatie%s voor mogelijkheden om dit te omzeilen."
+"U probeerde waarschijnlijk een bestand dat te groot is te uploaden. Zie de "
+"%sdocumentatie%s voor mogelijkheden om dit te omzeilen."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1158,11 +1157,11 @@ msgstr "Geselecteerde gebruikers worden verwijderd"
msgid "Close"
msgstr "Sluiten"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Wijzig"
@@ -1709,6 +1708,220 @@ msgstr "Minuut"
msgid "Second"
msgstr "Seconde"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Lettertypegrootte"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Het geuploade bestand is groter dan de 'upload_max_filesize' optie uit uw "
+"php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven "
+"in het HTML formulier."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "De map voor tijdelijkebestanden ontbreekt."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Opslaan van het bestand op de hardeschijf is mislukt."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Upload afgebroken vanwege de extensie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Onbekende fout bij het uploaden."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Geen index gedefinieerd!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexen"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unieke waarde"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Gecomprimeerd"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinaliteit"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Opmerking"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "De primaire sleutel is vervallen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s is vervallen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden "
+"verwijderd."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databases"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fout"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rij bijgewerkt."
+msgstr[1] "%1$d rijen bijgewerkt."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rij verwijderd."
+msgstr[1] "%1$d rijen verwijderd."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rij toegevoegd."
+msgstr[1] "%1$d rijen toegevoegd."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Recente tabel kon niet opgeslagen worden"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Recente tabellen"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Er zijn geen recente tabellen"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Er is geen gedetailleerde status informatie beschikbaar voor deze opslag "
+"engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is beschikbaar op deze MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s is uitgeschakeld op deze MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Deze MySQL-server ondersteund de %s storage engine niet."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ongeldige database"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ongeldige tabel naam"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabel %s is hernoemd naar %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "UI tabel voorkeuren konden niet worden opgeslagen"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Geen preview beschikbaar."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "neem het"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standaard thema %s niet gevonden!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Thema %s niet gevonden!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Thema pad niet gevonden voor thema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan niet verbinden: ongeldige instellingen."
@@ -1722,8 +1935,8 @@ msgstr "Welkom op %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"U heeft waarschijnlijk geen configuratiebestand aangemaakt. Het beste kunt u "
"%1$ssetup script%2$s gebruiken om een te maken."
@@ -1834,14 +2047,6 @@ msgstr "PBMS fout"
msgid "PBMS connection failed:"
msgstr "PBMS connectie mislukt:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Fout"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB info ophalen mislukt:"
@@ -1894,11 +2099,6 @@ msgstr "Tabellen"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexen"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2182,9 +2382,77 @@ msgstr "Er zijn geen bestanden om te uploaden"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Lettertypegrootte"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Beide"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nergens"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Links"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Rechts"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Open"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Gesloten"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "structuur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "gegevens"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "Structuur en gegevens"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Snel - toon enkel de belangrijkste opties"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Uitgebreid - toon alle mogelijke opties"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Uitgebreid - als bovenstaande maar zonder snel/uitgebreid keuze"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "volledige invoegingen"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "uitgebreide invoegingen"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "beide bovenstaande opties"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "geen van bovenstaande opties"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2845,12 +3113,6 @@ msgstr "Aanpassen importeer- en exporteer-directories en compressie-opties"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databases"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Weergave opties voor databases"
@@ -4496,78 +4758,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Foutief IP adres: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Beide"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nergens"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Links"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Rechts"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Open"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Gesloten"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "structuur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "gegevens"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "Structuur en gegevens"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Snel - toon enkel de belangrijkste opties"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Uitgebreid - toon alle mogelijke opties"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Uitgebreid - als bovenstaande maar zonder snel/uitgebreid keuze"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "volledige invoegingen"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "uitgebreide invoegingen"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "beide bovenstaande opties"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "geen van bovenstaande opties"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4638,25 +4828,6 @@ msgstr ""
msgid "Add an event"
msgstr "Een server toevoegen"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Connectie voor de controle gebruiker zoals in de configuratie is opgegeven "
-"is mislukt."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "De server reageert niet"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Details..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4731,9 +4902,9 @@ msgstr "Lengte/Waardes*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4792,11 +4963,6 @@ msgstr "Beveiliging"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Opmerking"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4863,6 +5029,25 @@ msgstr ""
"Bij benadering. Zie [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/"
"a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Connectie voor de controle gebruiker zoals in de configuratie is opgegeven "
+"is mislukt."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "De server reageert niet"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(of de MySQL-server heeft het socket niet juist ingesteld)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Details..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5004,13 +5189,13 @@ msgstr ", @TABLE@ wordt vervangen door de tabel naam"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Deze waarde wordt geïnterpreteerd met behulp van %1$sstrftime%2$s, het "
"gebruik van opmaakcodes is dan ook toegestaan. Daarnaast worden de volgende "
-"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ%5"
-"$s voor meer details."
+"vertalingen toegepast: %3$s. Overige tekst zal gelijk blijven. Zie %4$sFAQ"
+"%5$s voor meer details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5792,11 +5977,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Documentatie en meer informatie over PBXT kan gevonden worden op de %"
-"sPrimeBase XT home pagina%s."
+"Documentatie en meer informatie over PBXT kan gevonden worden op de "
+"%sPrimeBase XT home pagina%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6099,48 +6284,6 @@ msgstr "Views"
msgid "Export contents"
msgstr "Exporteer inhoud"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Het geuploade bestand is groter dan de 'upload_max_filesize' optie uit uw "
-"php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Het geuploade bestand overschrijd de MAX_FILE_SIZE-optie die was opgegeven "
-"in het HTML formulier."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Het geuploade bestand was slechts gedeeltelijk ontvangen."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "De map voor tijdelijkebestanden ontbreekt."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Opslaan van het bestand op de hardeschijf is mislukt."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Upload afgebroken vanwege de extensie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Onbekende fout bij het uploaden."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Fout bij het verplaatsen van het geuploade bestand, zie [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6160,6 +6303,40 @@ msgstr "SQL-resultaat"
msgid "Generated by"
msgstr "Gegenereerd door"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "De inhoud van een structuur bekijken door er op te klikken"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Een instelling veranderen door op \"Opties\" te klikken"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ga naar database"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "instellingen"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ga naar tabel"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ga naar view"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6227,40 +6404,6 @@ msgstr "Kolom namen"
msgid "This plugin does not support compressed imports!"
msgstr "Deze plugin heeft geen ondersteuning voor gecomprimeerde imports!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "De volgende structuren zijn aangemaakt of aangepast. Hier kunt u:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "De inhoud van een structuur bekijken door er op te klikken"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Een instelling veranderen door op \"Opties\" te klikken"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Klik op de \"Structuur\"-koppeling om de structuur aan te passen"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ga naar database"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "instellingen"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ga naar tabel"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ga naar view"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Percentages als decimalen importeren (12.00% naar ,12)"
@@ -6285,42 +6428,6 @@ msgstr ""
"Het XML-bestand was beschadigd of onvolledig. Repareer het bestand en "
"probeer opnieuw."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Geen index gedefinieerd!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unieke waarde"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Gecomprimeerd"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinaliteit"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "De primaire sleutel is vervallen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s is vervallen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"De indexen %1$s en %2$s lijken hetzelfde, mogelijk kan een van beide worden "
-"verwijderd."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6332,27 +6439,6 @@ msgstr "Geen"
msgid "Convert to Kana"
msgstr "Zet om naar Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rij bijgewerkt."
-msgstr[1] "%1$d rijen bijgewerkt."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rij verwijderd."
-msgstr[1] "%1$d rijen verwijderd."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rij toegevoegd."
-msgstr[1] "%1$d rijen toegevoegd."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Van"
@@ -6592,18 +6678,6 @@ msgstr "Navigatievenster herladen"
msgid "This format has no options"
msgstr "Dit format heeft geen opties"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Recente tabel kon niet opgeslagen worden"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Recente tabellen"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Er zijn geen recente tabellen"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Niet Goed"
@@ -6989,6 +7063,61 @@ msgstr "Verschil"
msgid "Target database"
msgstr "Doel database"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Voer SQL query/queries uit op de server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Draai SQL query/queries op database %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Clear"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolommen"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Sla deze SQL-query op"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Geef elke gebruiker toegang tot deze bookmark"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Bookmark met dezelfde naam overschrijven"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Overschrijf deze query niet vanuit een ander scherm"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Scheidingsteken"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Laat deze query hier zien "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Alleen bekijken"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Locatie van het tekstbestand"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server upload directory"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7052,61 +7181,6 @@ msgstr "Ongeldig herkenningsteken"
msgid "Unknown Punctuation String"
msgstr "Onbekende Punctuatie String"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Voer SQL query/queries uit op de server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Draai SQL query/queries op database %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Clear"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolommen"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Sla deze SQL-query op"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Geef elke gebruiker toegang tot deze bookmark"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Bookmark met dezelfde naam overschrijven"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Overschrijf deze query niet vanuit een ander scherm"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Scheidingsteken"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Laat deze query hier zien "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Alleen bekijken"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Locatie van het tekstbestand"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server upload directory"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7116,50 +7190,6 @@ msgstr ""
"De SQL-validatie kon niet worden geïnitialiseerd. Controleer of u de nodige "
"PHP-extensies heeft geïnstalleerd, zoals beschreven in de %sdocumentatie%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Er is geen gedetailleerde status informatie beschikbaar voor deze opslag "
-"engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is beschikbaar op deze MySQL-server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s is uitgeschakeld op deze MySQL-server."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Deze MySQL-server ondersteund de %s storage engine niet."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ongeldige database"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ongeldige tabel naam"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fout bij het hernoemen van de tabel %1$s naar %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabel %s is hernoemd naar %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "UI tabel voorkeuren konden niet worden opgeslagen"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabel lijkt leeg!"
@@ -7281,38 +7311,6 @@ msgstr "PARTITION definitie"
msgid "+ Add a value"
msgstr "+ Een nieuwe waarde toevoegen"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Geen geldig afbeeldingen pad voor thema %s gevonden!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Geen preview beschikbaar."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "neem het"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standaard thema %s niet gevonden!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Thema %s niet gevonden!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Thema pad niet gevonden voor thema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8377,8 +8375,8 @@ msgstr "Verwijder de databases die dezelfde naam hebben als de gebruikers."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Opmerking: phpMyAdmin krijgt de rechten voor de gebruikers uit de MySQL "
"privileges tabel. De content van deze tabel kan verschillen met de rechten "
diff --git a/po/phpmyadmin.pot b/po/phpmyadmin.pot
index d5f83ad861..f13801ea8c 100644
--- a/po/phpmyadmin.pot
+++ b/po/phpmyadmin.pot
@@ -8,10 +8,11 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
@@ -45,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr ""
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +65,18 @@ msgstr ""
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr ""
@@ -120,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
@@ -130,9 +131,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +142,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +157,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +197,12 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +213,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -260,79 +260,79 @@ msgstr ""
msgid "The database name is empty!"
msgstr ""
-#: db_operations.php:271
+#: db_operations.php:272
#, possible-php-format
msgid "Database %s has been renamed to %s"
msgstr ""
-#: db_operations.php:275
+#: db_operations.php:276
#, possible-php-format
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr ""
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:451
+#: db_operations.php:452
#, possible-php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, possible-php-format
msgid "Add %s"
msgstr ""
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -341,14 +341,14 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, possible-php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -494,97 +494,97 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
-#: db_routines.php:155
+#: db_routines.php:157
#, possible-php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, possible-php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, possible-php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr ""
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, possible-php-format
msgid "No routine with name %1$s found in database %2$s"
msgstr ""
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, possible-php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, possible-php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, possible-php-format
msgid "Routine %1$s has been modified."
msgstr ""
-#: db_routines.php:327
+#: db_routines.php:329
#, possible-php-format
msgid "Routine %1$s has been created."
msgstr ""
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr ""
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -710,8 +710,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, possible-php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -778,8 +778,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -852,9 +852,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -946,8 +946,8 @@ msgstr ""
#: import.php:58
#, possible-php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1113,11 +1113,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1644,6 +1644,210 @@ msgstr ""
msgid "Second"
msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, possible-php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, possible-php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr ""
+
+#: libraries/Message.class.php:260
+#, possible-php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, possible-php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, possible-php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr ""
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, possible-php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, possible-php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, possible-php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, possible-php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, possible-php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, possible-php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, possible-php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, possible-php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, possible-php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1657,8 +1861,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, possible-php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1757,14 +1961,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr ""
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1817,11 +2013,6 @@ msgstr ""
msgid "Data"
msgstr ""
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2098,8 +2289,76 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2730,12 +2989,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4203,78 +4456,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4338,23 +4519,6 @@ msgstr ""
msgid "Add an event"
msgstr ""
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4422,9 +4586,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4471,11 +4635,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4532,6 +4691,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4670,8 +4846,8 @@ msgstr ""
#, possible-php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5361,8 +5537,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, possible-php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5643,42 +5819,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5696,6 +5836,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5755,40 +5929,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5811,40 +5951,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, possible-php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, possible-php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5855,27 +5961,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, possible-php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, possible-php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, possible-php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr ""
@@ -6114,18 +6199,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr ""
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6495,57 +6568,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, possible-php-format
msgid "Run SQL query/queries on server %s"
@@ -6601,6 +6623,57 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, possible-php-format
msgid ""
@@ -6608,48 +6681,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, possible-php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, possible-php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, possible-php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, possible-php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, possible-php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6754,38 +6785,6 @@ msgstr ""
msgid "+ Add a value"
msgstr ""
-#: libraries/Theme.class.php:160
-#, possible-php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, possible-php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, possible-php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, possible-php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7734,8 +7733,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/pl.po b/po/pl.po
index 9a1beb3d38..00300c3776 100644
--- a/po/pl.po
+++ b/po/pl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-02-24 16:21+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: polish \n"
+"Language: pl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pl\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
"|| n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Szukaj"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Szukaj"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Wykonaj"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza danych %1$s została utworzona."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentarz bazy danych: "
@@ -133,9 +133,9 @@ msgstr "Komentarz bazy danych: "
msgid "Table comments"
msgstr "Komentarze tabeli"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Komentarze tabeli"
msgid "Column"
msgstr "Kolumna"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Kolumna"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Łącze"
msgid "Comments"
msgstr "Komentarze"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Komentarze"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Usuń zaznaczenie"
msgid "The database name is empty!"
msgstr "Nazwa bazy danych jest pusta!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Baza danych %s ma nazwę zmienioną na %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Baza danych %s została przekopiowana do %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Zmień nazwę bazy danych na"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Polecenie"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Usuń bazę danych"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza danych %s została usunięta."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Usuń bazę danych (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiuj bazę danych do"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tylko struktura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i dane"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Tylko dane"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE przed przekopiowaniem"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj wartości AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Dodaj ograniczenia"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Przełącz do przekopiowanej bazy danych"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Przełącz do przekopiowanej bazy danych"
msgid "Collation"
msgstr "Metoda porównywania napisów"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +355,7 @@ msgstr ""
"Dodatkowe możliwości pracy z połączonymi tabelami zostały wyłączone. Aby "
"dowiedzieć się, dlaczego - kliknij %stutaj%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Edytuj lub eksportuj schemat relacji"
@@ -505,14 +504,14 @@ msgstr "Zapytanie SQL dla bazy danych %s:"
msgid "Submit Query"
msgstr "Wykonaj zapytania"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Zapytanie SQL zostało wykonane pomyślnie"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -520,96 +519,96 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Pozwól wykonywać procedury składowane."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL zwrócił pusty wynik (zero rekordów)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Wykonane zostały następujące zapytania:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL zwrócił komunikat: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Błąd przetwarzania wywołania"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Nie znaleziono żadnych tabel w bazie danych."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Domyślne opcje eksportu"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Niewłaściwy numer serwera: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabela %s została usunięta"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tabela %1$s została utworzona."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Utwórz relację"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Tryb edycji"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -741,11 +740,11 @@ msgstr "Monitorowanie nie jest aktywne."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w %"
-"sdocumentation%s."
+"Ta perspektywa ma przynajmniej tyle wierszy. Więcej informacji w "
+"%sdocumentation%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -811,8 +810,8 @@ msgstr "Widok do druku"
msgid "Empty"
msgstr "Wyczyść"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -887,9 +886,9 @@ msgstr "Zaktualizowane"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -983,8 +982,8 @@ msgstr "Zrzut został zapisany do pliku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Prawdopodobnie próbowano wrzucić duży plik. Aby poznać sposoby obejścia tego "
"limitu, proszę zapoznać się z %sdokumenacją%s."
@@ -1174,11 +1173,11 @@ msgstr "Usuń zaznaczonych użytkowników"
msgid "Close"
msgstr "Zamknij"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edytuj"
@@ -1757,6 +1756,228 @@ msgstr "Minuta"
msgid "Second"
msgstr "Sekunda"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Rozmiar pisma"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
+"upload_max_filesize w php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
+"określonej w formularzu HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Plik został przesłany jedynie częściowo."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nie znaleziono katalogu tymczasowego."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Nie udało się zapisać pliku na dysk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nieznany błąd przesyłania pliku."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Brak zdefiniowanego indeksu!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksy"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jednoznaczny"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Spakowany"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Moc"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentarz"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Klucz podstawowy został usunięty"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Klucz %s został usunięty"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać "
+"usunięty."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Bazy danych"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Błąd"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Zmodyfikowanych rekordów: %1$d."
+msgstr[1] "Zmodyfikowanych rekordów: %1$d."
+msgstr[2] "Zmodyfikowanych rekordów: %1$d."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Usuniętych rekordów: %1$d."
+msgstr[1] "Usuniętych rekordów: %1$d."
+msgstr[2] "Usuniętych rekordów: %1$d."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Wstawionych rekordów: %1$d."
+msgstr[1] "Wstawionych rekordów: %1$d."
+msgstr[2] "Wstawionych rekordów: %1$d."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Nie udało się załadować lub zapisać konfiguracji"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Zliczaj tabele"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Brak skonfigurowanych serwerów"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Brak szczegółowych informacji o tym mechanizmie składowania"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s jest dostępny na tym serwerze MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Niewłaściwa baza danych"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Niewłaściwa nazwa tabeli"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s ma nazwę zmienioną na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Podgląd niedostępny."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "użyj"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Nie znaleziono domyślnego motywu graficznego %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nie znaleziono motywu graficznego %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nie znaleziono ścieżki do motywu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nie udało się nawiązać połączenia: błędne ustawienia."
@@ -1770,8 +1991,8 @@ msgstr "Witamy w %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Prawdopodobnie powodem jest brak utworzonego pliku konfiguracyjnego. Do jego "
"stworzenia można użyć %1$sskryptu instalacyjnego%2$s."
@@ -1879,14 +2100,6 @@ msgstr "Błąd PBMS"
msgid "PBMS connection failed:"
msgstr "Błąd połączenia z PBMS"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Błąd"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1939,11 +2152,6 @@ msgstr "Tabele"
msgid "Data"
msgstr "Dane"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksy"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2234,9 +2442,85 @@ msgstr "Nie podałeś plików do wgrania na serwer"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Rozmiar pisma"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Oba"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otwórz"
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Zamknij"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dane"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i dane"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Pokaż tylko podstawowe opcje do konfiguracji"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Pełna - wyświetl wszystkie opcje konfiguracyjne"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Pełne dodania"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Rozszerzone dodania"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oba powyższe"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "żadne z powyższych"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2910,12 +3194,6 @@ msgstr "Ustaw katalogi importu i eksportu oraz opcje kompresji"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Bazy danych"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opcje wyświetlania baz danych"
@@ -4588,86 +4866,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Nieprawidłowy adres IP: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Oba"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otwórz"
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Zamknij"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dane"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i dane"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Pokaż tylko podstawowe opcje do konfiguracji"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Pełna - wyświetl wszystkie opcje konfiguracyjne"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Pełne dodania"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Rozszerzone dodania"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oba powyższe"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "żadne z powyższych"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4738,26 +4936,6 @@ msgstr ""
msgid "Add an event"
msgstr "Dodaj nowy serwer"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
-"konfiguracyjnym nie powiodło się."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serwer nie odpowiada"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Szczegóły…"
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4832,9 +5010,9 @@ msgstr "Długość/Wartości*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4893,11 +5071,6 @@ msgstr "Bezpieczeństwo"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentarz"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4964,6 +5137,26 @@ msgstr ""
"Może być w przybliżeniu. Zobacz [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Połączenie dla użytkownika kontrolnego zdefiniowanego w pliku "
+"konfiguracyjnym nie powiodło się."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serwer nie odpowiada"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(lub gniazdo lokalnego serwera MySQL nie jest skonfigurowane poprawnie)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Szczegóły…"
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5133,8 +5326,8 @@ msgstr ", @TABLE@ zostanie zastąpione nazwą wybranej tabeli"
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Interpretacja tej wartości należy do funkcji %1$sstrftime%2$s i można użyć "
"jej napisów formatujących. Dodatkowo zostaną zastosowane następujące "
@@ -5949,8 +6142,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6269,48 +6462,6 @@ msgstr "Perspektywa"
msgid "Export contents"
msgstr "Eksportuj zawartość"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Rozmiar wrzucanego pliku jest większy niż wartość dyrektywy "
-"upload_max_filesize w php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Rozmiar wrzucanego pliku jest więcszy niż wartość dyrektywy MAX_FILE_SIZE "
-"określonej w formularzu HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Plik został przesłany jedynie częściowo."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nie znaleziono katalogu tymczasowego."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Nie udało się zapisać pliku na dysk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Przesłanie pliku zostało zatrzymane przez rozszerzenie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nieznany błąd przesyłania pliku."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Błąd podczas przenoszenia przesłanego pliku. Zobacz [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6330,6 +6481,41 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Wygenerowany przez"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobacz zawartość struktury klikając jej nazwę"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Przejdź do bazy danych"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ustawienia"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Przejdź do tabeli"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Przejdź do widoku"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6394,41 +6580,6 @@ msgstr "Nazwy kolumn"
msgid "This plugin does not support compressed imports!"
msgstr "Ten moduł nie obsługuje skompresowanych importów!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Następujące struktury zostały wcześniej utworzone lub zaktualizowane. Możesz:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobacz zawartość struktury klikając jej nazwę"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Możesz zmienić wszystkie ustawienia klikając odnośnik \"Opcje\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Edytuj strukturę po kliknięciu odnośnika \"Struktura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Przejdź do bazy danych"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ustawienia"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Przejdź do tabeli"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Przejdź do widoku"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6456,42 +6607,6 @@ msgstr ""
"Plik XML ma nieprawidłową strukturę lub jest niekompletny. Proszę skorygować "
"problem i spróbować ponownie."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Brak zdefiniowanego indeksu!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jednoznaczny"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Spakowany"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Moc"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Klucz podstawowy został usunięty"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Klucz %s został usunięty"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indeksy %1$s i %2$s wyglądają na identyczne i jeden z nich mógłby zostać "
-"usunięty."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6504,30 +6619,6 @@ msgstr "Brak"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Zmodyfikowanych rekordów: %1$d."
-msgstr[1] "Zmodyfikowanych rekordów: %1$d."
-msgstr[2] "Zmodyfikowanych rekordów: %1$d."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Usuniętych rekordów: %1$d."
-msgstr[1] "Usuniętych rekordów: %1$d."
-msgstr[2] "Usuniętych rekordów: %1$d."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Wstawionych rekordów: %1$d."
-msgstr[1] "Wstawionych rekordów: %1$d."
-msgstr[2] "Wstawionych rekordów: %1$d."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6771,24 +6862,6 @@ msgstr "Indywidualizacja ramki nawigacyjnej"
msgid "This format has no options"
msgstr "Ten format nie ma żadnych opcji"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Nie udało się załadować lub zapisać konfiguracji"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Zliczaj tabele"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Brak skonfigurowanych serwerów"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "błąd"
@@ -7190,6 +7263,63 @@ msgstr "Różnica"
msgid "Target database"
msgstr "Docelowa baza danych"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Wyczyść"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nazwy kolumn"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pamiętaj zapytanie SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Pozwól na dostęp wszystkim użytkownikom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Nie nadpisuj tego zapytania spoza okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Separator"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Wywołaj ponownie zapytanie "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Tylko pokaż"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokalizacja pliku tekstowego"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "katalog serwera WWW do przesyłania plików"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7254,63 +7384,6 @@ msgstr "Nieprawidłowy identyfikator"
msgid "Unknown Punctuation String"
msgstr "Nieznany znak przestankowy"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Uruchom zapytanie/zapytania SQL na serwerze %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Wykonanie zapytania/zapytań SQL do bazy danych %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Wyczyść"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nazwy kolumn"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pamiętaj zapytanie SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Pozwól na dostęp wszystkim użytkownikom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamień istniejące zapamiętane zapytanie o tej samej nazwie"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Nie nadpisuj tego zapytania spoza okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Separator"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Wywołaj ponownie zapytanie "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Tylko pokaż"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokalizacja pliku tekstowego"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "katalog serwera WWW do przesyłania plików"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7318,50 +7391,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"Analizator składni SQL nie mógł zostać zainicjowany. Sprawdź, czy "
-"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w %"
-"sdokumentacji%s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Brak szczegółowych informacji o tym mechanizmie składowania"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s jest dostępny na tym serwerze MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Mechanizm %s został wyłączony w tym serwerze MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ten serwer MySQL nie obsługuje mechanizmu składowania %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Niewłaściwa baza danych"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Niewłaściwa nazwa tabeli"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Błąd podczas zmiany nazwy tabeli z %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s ma nazwę zmienioną na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"zainstalowane są niezbędne rozszerzenia PHP, tak jak zostało to opisane w "
+"%sdokumentacji%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7411,8 +7442,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij %"
-"sopisy transformacji%s"
+"Aby uzyskać listę dostępnych opcji transformacji i ich typów MIME, kliknij "
+"%sopisy transformacji%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -7493,39 +7524,6 @@ msgstr "Definicja partycji"
msgid "+ Add a value"
msgstr "Dodaj nowy serwer"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-"Nie znaleziono prawidłowej ścieżki do obrazka dla motywu graficznego %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Podgląd niedostępny."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "użyj"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Nie znaleziono domyślnego motywu graficznego %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nie znaleziono motywu graficznego %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nie znaleziono ścieżki do motywu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7924,8 +7922,8 @@ msgid ""
"Server running with Suhosin. Please refer to %sdocumentation%s for possible "
"issues."
msgstr ""
-"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja%"
-"s."
+"Serwer działa pod ochroną Suhosina. Możliwe problemy opisuje %sdokumentacja"
+"%s."
#: navigation.php:213 server_databases.php:281 server_synchronize.php:1202
msgid "No databases"
@@ -8672,8 +8670,8 @@ msgstr "Usuń bazy danych o takich samych nazwach jak użytkownicy."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Uwaga: phpMyAdmin pobiera uprawnienia użytkowników wprost z tabeli uprawnień "
"MySQL-a. Zawartość tej tabeli, jeśli zostały w niej dokonane ręczne zmiany, "
@@ -10288,8 +10286,8 @@ msgid ""
"of users, including you, are connected to."
msgstr ""
"Jeżeli wydaje się to konieczne, można użyć dodatkowych ustawień "
-"bezpieczeństwa — [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
+"bezpieczeństwa — [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server_config]uwierzytelniania na podstawie hosta[/a] i [a@?"
"page=form&formset=features#tab_Security]listy zaufanych serwerów proxy[/"
"a]. Jednakże ochrona oparta na adresy IP może nie być wiarygodna, jeżeli "
"używany IP należy do ISP, do którego podłączonych jest tysiące użytkowników."
@@ -10300,9 +10298,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
diff --git a/po/pt.po b/po/pt.po
index 39c3e930b7..ea3fcb0cff 100644
--- a/po/pt.po
+++ b/po/pt.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-03-26 03:23+0200\n"
"Last-Translator: \n"
"Language-Team: portuguese \n"
+"Language: pt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Pesquisar"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pesquisar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executa"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "A base de dados %s foi criada."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentário da Base de Dados: "
@@ -133,9 +133,9 @@ msgstr "Comentário da Base de Dados: "
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Comentários da tabela"
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Coluna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Comentários"
msgid "No"
msgstr "Não"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Limpa Todas as Selecções"
msgid "The database name is empty!"
msgstr "O nome da base de dados está vazia!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "O nome da base de dados %s foi alterado para %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "A base de dados %s foi copiada para %s."
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Alterar o nome da base de dados para"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Comando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remover a Base de Dados"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "A base de dados %s foi eliminada."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Apagar a Base de Dados (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar a Base de Dados para"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Somente a estrutura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e dados"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Apenas dados"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Criar a Base de Dados antes de copiar (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Adicionar %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Adicionar valor AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Adicionar restrições (constraints)"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mudar para a Base de Dados copiada"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Mudar para a Base de Dados copiada"
msgid "Collation"
msgstr "Agrupamento (Collation)"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +352,7 @@ msgstr ""
"As configurações do phpMyAdmin para trabalhar com ligações entre Tabelas "
"foram desactivadas. Para saber porquê carregue %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar ou exporta o esquema relacional (schema)"
@@ -499,102 +498,102 @@ msgstr "Comando SQL na base de dados %s:"
msgid "Submit Query"
msgstr "Executar Comando SQL"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "O seu comando SQL foi executado com sucesso"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
msgid "Execution results of routine %s"
msgstr "Permite criar novas tabelas."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL não retornou nenhum registo."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Erro a Processar Pedido"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Não foram encontradas tabelas na base de dados"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Importar"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "A tabela %s foi eliminada"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "A tabela %s foi eliminada"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Versão do servidor"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -724,11 +723,11 @@ msgstr "Detecção de Alterações está desactivada."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta vista tem número de linhas aproximado. Por favor, consulte a %"
-"sdocumentação%s."
+"Esta vista tem número de linhas aproximado. Por favor, consulte a "
+"%sdocumentação%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -795,8 +794,8 @@ msgstr "Vista de impressão"
msgid "Empty"
msgstr "Limpa"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -874,9 +873,9 @@ msgstr "Actualizado"
msgid "Status"
msgstr "Estado"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +969,8 @@ msgstr "O Dump foi gravado para o ficheiro %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Provavelmente tentou efectuar o importar um ficheiro demasiado grande. Por "
"favor reveja a %sdocumentação%s para encontrar formas de contornar este "
@@ -1163,11 +1162,11 @@ msgstr "Removendo os utilizadores seleccionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Edita"
@@ -1771,6 +1770,214 @@ msgstr "em uso"
msgid "Second"
msgstr "por segundo"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nenhum indíce definido!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Quantidade"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Comentários"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "A chave primária foi eliminada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "O Índice %s foi eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Base de Dados"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Erro"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Sem tablelas"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "Tabelas em tracking"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s renomeada para %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1784,11 +1991,11 @@ msgstr "Bemvindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script%"
-"2$s pode ser utilizado para criar um."
+"Provavelmente um ficheiro de configuração não foi criado. O %1$ssetup script"
+"%2$s pode ser utilizado para criar um."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1890,14 +2097,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Erro"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1950,11 +2149,6 @@ msgstr "Tabelas"
msgid "Data"
msgstr "Dados"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2236,8 +2430,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Aspa não fechada"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e dados"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Instrucções de inserção completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Instrucções de inserção múltiplas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2911,12 +3182,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Base de Dados"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4452,87 +4717,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Aspa não fechada"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e dados"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Instrucções de inserção completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Instrucções de inserção múltiplas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4601,23 +4785,6 @@ msgstr ""
msgid "Add an event"
msgstr "Acrescenta um utilizador"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4690,9 +4857,9 @@ msgstr "Tamanho/Valores*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4750,12 +4917,6 @@ msgstr "Tipo de Query"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Comentários"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4817,6 +4978,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4979,8 +5157,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5714,8 +5892,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6027,42 +6205,6 @@ msgstr ""
msgid "Export contents"
msgstr "Tipo de Exportação"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6080,6 +6222,42 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Sem bases de dados"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Sem bases de dados"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6141,42 +6319,6 @@ msgstr "Nome dos Campos"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Sem bases de dados"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Sem bases de dados"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6199,40 +6341,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nenhum indíce definido!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Quantidade"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "A chave primária foi eliminada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "O Índice %s foi eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6245,27 +6353,6 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6512,21 +6599,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Este formato não tem opções"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Sem tablelas"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "Tabelas em tracking"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "não está OK"
@@ -6917,6 +6989,63 @@ msgstr ""
msgid "Target database"
msgstr "Pesquisar na Base de Dados"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Executa comando(s) SQL na base de dados %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Executa comando(s) SQL na base de dados %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nome dos Campos"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Marcar este comando SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixar todos os utilizadores acederem a este marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Não alterar esta pesquisa de fora da janela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar de novo aqui este comando "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Ver apenas"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localização do arquivo de texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Directoria no servidor web para fazer upload"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6981,63 +7110,6 @@ msgstr "Identificador inválido"
msgid "Unknown Punctuation String"
msgstr "Pontuação desconhecida"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Executa comando(s) SQL na base de dados %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Executa comando(s) SQL na base de dados %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nome dos Campos"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Marcar este comando SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixar todos os utilizadores acederem a este marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Não alterar esta pesquisa de fora da janela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar de novo aqui este comando "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Ver apenas"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localização do arquivo de texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Directoria no servidor web para fazer upload"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7045,48 +7117,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s renomeada para %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7214,38 +7244,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Acrescenta um utilizador"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8280,8 +8278,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos utilizadores directamente da "
"tabela de privilégios do MySQL. O conteúdo destas tabelas pode diferir dos "
diff --git a/po/pt_BR.po b/po/pt_BR.po
index 91c97c60a1..3b28f6ea1d 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-15 13:55+0200\n"
"Last-Translator: Jose Ivan Bezerra Vilarouca Filho \n"
"Language-Team: brazilian_portuguese \n"
+"Language: pt_BR\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: pt_BR\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Procurar"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Procurar"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Executar"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Banco de dados %1$s foi criado."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentário do Banco de Dados: "
@@ -132,9 +132,9 @@ msgstr "Comentário do Banco de Dados: "
msgid "Table comments"
msgstr "Comentários da tabela"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Comentários da tabela"
msgid "Column"
msgstr "Coluna"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Coluna"
msgid "Type"
msgstr "Tipo"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Links para"
msgid "Comments"
msgstr "Comentários"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Comentários"
msgid "No"
msgstr "Não"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Desmarcar Todos"
msgid "The database name is empty!"
msgstr "O nome do Banco de Dados está em branco!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "O Banco de Dados %s foi renomeado para %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Banco de Dados %s copiado para %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Renomear Banco de Dados para"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Comando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Remover Banco de Dados"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Banco de Dados %s foi eliminado."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Apagar o Banco de Dados (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiar Banco de Dados para"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Somente estrutura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Estrutura e dados"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Dados apenas"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE antes de copiar"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Adicionar %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Adicionar valor AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Adicionar restrições"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Mudar para o Banco de Dados copiado"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Mudar para o Banco de Dados copiado"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Os recursos adicionais para trabalhar com tabelas linkadas foram "
"desativadas. Para descobrir o motivo clique %saqui%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editar ou exportar esquema relacional"
@@ -500,109 +499,109 @@ msgstr "Consulta SQL ao Banco de Dados %s:"
msgid "Submit Query"
msgstr "Enviar consulta SQL"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Seu comando SQL foi executado com sucesso"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Permitir executar stored routines."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL retornou um conjunto vazio (ex. zero registros)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "As seguintes consultas foram executadas:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Mensagens do MySQL : "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Erro no processamento da requisição"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "Nenhuma tabela encontrada no banco de dados"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Importar arquivos"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Índice de servidor inválido: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabela %s foi eliminada"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "A tabela %1$s foi criada."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Criar relacionamento"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit server"
msgid "Edit routine"
msgstr "Editar servidor"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -732,11 +731,11 @@ msgstr "Rastreamento não está ativo."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
-"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a %"
-"sdocumentação%s."
+"Esta visão tem pelo menos esse número de linhas. Por favor, consulte a "
+"%sdocumentação%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
#: libraries/tbl_info.inc.php:60 tbl_structure.php:212
@@ -802,8 +801,8 @@ msgstr "Visualização para impressão"
msgid "Empty"
msgstr "Limpar"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +875,9 @@ msgstr "Atualizado"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -972,8 +971,8 @@ msgstr "Dump foi salvo no arquivo %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Você provavelmente tentou carregar um arquivo muito grande. Veja referências "
"na %sdocumentation%s para burlar esses limites."
@@ -1158,11 +1157,11 @@ msgstr "Remover os usuários selecionados"
msgid "Close"
msgstr "Fechar"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editar"
@@ -1724,6 +1723,218 @@ msgstr "Minuto"
msgid "Second"
msgstr "Segundo"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Tamanho da fonte"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"O arquivo carregado excede o tamanho definido na diretriz "
+"upload_max_filesize no php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
+"formulário HTM."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Carregamento do arquivo foi apenas parcial."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Pasta temporária não encontrada."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Falhou ao salvar arquivo no disco."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Carregamento do arquivo parado pela extenção."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Erro desconhecido no carregamento do arquivo."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nenhum índice definido!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Índices"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Único"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Pacote"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalidade"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Cometário"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "A chave primária foi deletada"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Índice %s foi eliminado"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido "
+"removida."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Banco de Dados"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Erro"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d linha afetada."
+msgstr[1] "%1$d linha(s) afetadas."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d linhas excluída."
+msgstr[1] "%1$d linhas(s) excluídas."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d linha inserida."
+msgstr[1] "%1$d linha(s) inseridas."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Não foi possível salvar a tabela recente"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "tabelas recentes"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Não existem tabelas recentes"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Não há nenhuma informação detalhada do status disponível para esta storage "
+"engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s está disponível neste servidor MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s está desabilitado neste servidor MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Esse servidor MySQL não suporta o stored engine %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Banco de Dados inválido"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Nome de tabela inválida"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Erro ao renomear tabela %1$s para %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s renomeada para %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Não foi possível salvar as preferências da tabela"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Encontrado caminho inválido para imagens para o tema %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nenhuma pré-visualização disponível."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "tome"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema padrão %s não encontrado!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s não encontrado!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Encontrado caminho inválido para o tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Não pode conectar: configurações inválidas."
@@ -1737,8 +1948,8 @@ msgstr "Bem vindo ao %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"A provável razão para isso é que você não criou o arquivo de configuração. "
"Você deve usar o %1$ssetup script%2$s para criar um."
@@ -1845,14 +2056,6 @@ msgstr "Erro PBMS"
msgid "PBMS connection failed:"
msgstr "Falha na conexão PBMS:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Erro"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "o PBMS falhou na obtenção de informações BLOB:"
@@ -1905,11 +2108,6 @@ msgstr "Tabelas"
msgid "Data"
msgstr "Dados"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Índices"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2192,9 +2390,84 @@ msgstr "Não existem arquivos para fazer upload"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Tamanho da fonte"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Ambos"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Lugar nenhum"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Esquerda"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Direita"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Abrir"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Fechado"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Estrutura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dados"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Estrutura e dados"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rápida - exibir apenas o mínimo de opções para configurar"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Personalizada - exibir todas as opções possíveis para configurar"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada."
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Inserções completas"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Inserções extendidas"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ambos acima"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nenhuma das acima."
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2865,12 +3138,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Banco de Dados"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4403,85 +4670,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Ambos"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Lugar nenhum"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Esquerda"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Direita"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Abrir"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Fechado"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Estrutura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dados"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Estrutura e dados"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rápida - exibir apenas o mínimo de opções para configurar"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Personalizada - exibir todas as opções possíveis para configurar"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Personalizada - como acima, mas sem a escolha rápida/personalizada."
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Inserções completas"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Inserções extendidas"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ambos acima"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nenhuma das acima."
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4550,25 +4738,6 @@ msgstr ""
msgid "Add an event"
msgstr "Adicionar novo servidor"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Conexão para controle do usuário como definido nas configurações falhou."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "O servidor não está respondendo"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-"(ou o soquete do servidor MySQL local não está configurado corretamente)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalhes..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4643,9 +4812,9 @@ msgstr "Tamanho/Definir*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4704,11 +4873,6 @@ msgstr "Segurança"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Cometário"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4773,6 +4937,25 @@ msgid ""
"3.11[/a]"
msgstr "Pode ser aproximado. Veja o FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Conexão para controle do usuário como definido nas configurações falhou."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "O servidor não está respondendo"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+"(ou o soquete do servidor MySQL local não está configurado corretamente)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalhes..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4935,8 +5118,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Esse valor é interpretado usando %1$sstrftime%2$s, então você pode usar as "
"strings de formatação de tempo. Adicionalmente a seguinte transformação "
@@ -5707,8 +5890,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6026,46 +6209,6 @@ msgstr "Visão"
msgid "Export contents"
msgstr "Tipo de exportação"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"O arquivo carregado excede o tamanho definido na diretriz "
-"upload_max_filesize no php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"O arquivo carregado excede o tamanho definido na diretriz MAX_FILE_SIZE do "
-"formulário HTM."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Carregamento do arquivo foi apenas parcial."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Pasta temporária não encontrada."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Falhou ao salvar arquivo no disco."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Carregamento do arquivo parado pela extenção."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Erro desconhecido no carregamento do arquivo."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Erro ao mover o arquivo carregado, veja FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6085,6 +6228,42 @@ msgstr "Resultado SQL"
msgid "Generated by"
msgstr "Gerado por"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Sem bases"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Sem bases"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6147,42 +6326,6 @@ msgstr "Nome das colunas"
msgid "This plugin does not support compressed imports!"
msgstr "Esse plugin não suporta importações comprimidas!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Sem bases"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Sem bases"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6207,42 +6350,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nenhum índice definido!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Único"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Pacote"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalidade"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "A chave primária foi deletada"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Índice %s foi eliminado"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"A indexação %1$s e %2$s parecem ser iguais ou uma delas pode ter sido "
-"removida."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6255,27 +6362,6 @@ msgstr "Nenhum"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d linha afetada."
-msgstr[1] "%1$d linha(s) afetadas."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d linhas excluída."
-msgstr[1] "%1$d linhas(s) excluídas."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d linha inserida."
-msgstr[1] "%1$d linha(s) inseridas."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6520,18 +6606,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Esse formato não tem opções"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Não foi possível salvar a tabela recente"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "tabelas recentes"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Não existem tabelas recentes"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "não está OK"
@@ -6926,6 +7000,63 @@ msgstr ""
msgid "Target database"
msgstr "Procurar no Banco de Dados"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Rodar consulta(s) SQL no servidor %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Fazer consulta SQL no Banco de Dados %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Limpar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Nome das colunas"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Gravar essa consulta SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Deixar qualquer usuário acessar esse marcador"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Substituir marcador de mesmo nome existente"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Não sobrescrever esta consulta fora desta janela"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitadores"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Mostrar esta consulta SQL novamente "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Apenas visualizar"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Localização do arquivo texto"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Servidor web subiu o diretório"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6989,63 +7120,6 @@ msgstr "Identificador inválido"
msgid "Unknown Punctuation String"
msgstr "String de pontuação desconhecida"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Rodar consulta(s) SQL no servidor %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Fazer consulta SQL no Banco de Dados %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Limpar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Nome das colunas"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Gravar essa consulta SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Deixar qualquer usuário acessar esse marcador"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Substituir marcador de mesmo nome existente"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Não sobrescrever esta consulta fora desta janela"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitadores"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Mostrar esta consulta SQL novamente "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Apenas visualizar"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Localização do arquivo texto"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Servidor web subiu o diretório"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7055,50 +7129,6 @@ msgstr ""
"O Validador SQL não pode ser inicializado. Verifique se você instalou a "
"extenção necessária do php conforme está escrito em %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Não há nenhuma informação detalhada do status disponível para esta storage "
-"engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s está disponível neste servidor MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s está desabilitado neste servidor MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Esse servidor MySQL não suporta o stored engine %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Banco de Dados inválido"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Nome de tabela inválida"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Erro ao renomear tabela %1$s para %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s renomeada para %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Não foi possível salvar as preferências da tabela"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela para estar vazia!"
@@ -7229,38 +7259,6 @@ msgstr "Definição da PARTIÇÃO"
msgid "+ Add a value"
msgstr "Adicionar novo usuário"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Encontrado caminho inválido para imagens para o tema %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nenhuma pré-visualização disponível."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "tome"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema padrão %s não encontrado!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s não encontrado!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Encontrado caminho inválido para o tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8383,8 +8381,8 @@ msgstr "Eliminar o Banco de Dados que possui o mesmo nome dos usuários."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Nota: O phpMyAdmin recebe os privilégios dos usuário diretamente da tabela "
"de privilégios do MySQL. O conteúdo destas tabelas pode divergir dos "
diff --git a/po/ro.po b/po/ro.po
index 76af888302..db1d88d424 100644
--- a/po/ro.po
+++ b/po/ro.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-22 02:28+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: romanian \n"
+"Language: ro\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ro\n"
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
"20)) ? 1 : 2);;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Caută"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Caută"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Execută"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza de date %1$s a fost creată."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Comentarii referitoare la baza de date: "
@@ -133,9 +133,9 @@ msgstr "Comentarii referitoare la baza de date: "
msgid "Table comments"
msgstr "Comentarii tabel"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -146,12 +146,12 @@ msgstr "Comentarii tabel"
msgid "Column"
msgstr "Denumirile coloanelor"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -161,9 +161,9 @@ msgstr "Denumirile coloanelor"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -201,13 +201,12 @@ msgstr "Trimitere la"
msgid "Comments"
msgstr "Comentarii"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -218,17 +217,17 @@ msgstr "Comentarii"
msgid "No"
msgstr "Nu"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,82 +264,82 @@ msgstr "Deselectează tot"
msgid "The database name is empty!"
msgstr "Cîmpul de denumire al bazei de date este gol!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Baza de date %s a fost redenumită în %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Baza de date %s a fost copiata la %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Redenumire bază de date în"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Comanda"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Redenumire bază de date în"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza de date %s a fost aruncată."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Nu sînt baze de date"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Copiază baza de date"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Numai structura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Structura și date"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Numai date"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREEAZĂ BAZA DE DATE înainte de copiere"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Adăugare %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Adaugă valoare pentru AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Adaugă constrângeri"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Schimbă la tabela copiată"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -349,7 +348,7 @@ msgstr "Schimbă la tabela copiată"
msgid "Collation"
msgstr "Interclasare"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -361,7 +360,7 @@ msgstr ""
"Opțiunile adiționale pentru folosirea tabelelor intercalate au fost "
"dezactivate. Pentru a afla de ce ... %shere%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -515,14 +514,14 @@ msgstr "Comandă SQL pe baza de date %s:"
msgid "Submit Query"
msgstr "Trimite comanda"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Comanda dumneavoastră SQL a fost executată cu succes"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -530,94 +529,94 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Permite executarea rutinelor stocate."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL a dat un set de rezultate gol (zero linii)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL zice: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procese"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Nu s-a găsit nici un tabel în baza de date."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Import fișiere"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Index de server nevalid: „%s”"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabelul %s a fost aruncat"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tabelul %1$s a fost creat."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Creare relație"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Regim de redactare"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -753,8 +752,8 @@ msgstr "Monitorizarea nu este activată"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Această vedere are minim acest număr de rânduri. Vedeți %sdocumentation%s."
@@ -822,8 +821,8 @@ msgstr "Vizualizare imprimare"
msgid "Empty"
msgstr "Golește"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -902,9 +901,9 @@ msgstr "Actualizat(ă)"
msgid "Status"
msgstr "Stare"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1005,11 +1004,11 @@ msgstr "Copia a fost salvată în fișierul %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la %"
-"sdocumentație%s pentru căi de ocolire a acestei limite."
+"Probabil ați încercat să încărcați un fișier prea mare. Faceți referire la "
+"%sdocumentație%s pentru căi de ocolire a acestei limite."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1201,11 +1200,11 @@ msgstr "Eliminarea utilizatorilor selectați"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Editare"
@@ -1823,6 +1822,224 @@ msgstr "în folosință"
msgid "Second"
msgstr "pe secundă"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Dimensiune font"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
+"formularul HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Fișierul a fost încărcat numai parțial."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Lipsește un dosar temporar."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Eșec la scrierea fișierului pe disc."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Încărcarea fișierului a fost împiedicată de extensie."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Eroare necunoscută la încărcarea fișierului."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Index nu este definit!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexuri"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unic"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Împachetat"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinalitate"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Comentariu"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Cheia primară a fost aruncată"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indexul %s a fost aruncat"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze de date"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Eroare"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rînd(uri) afectat(e)."
+msgstr[1] "%1$d rînd(uri) afectat(e)."
+msgstr[2] "%1$d rînd(uri) afectat(e)."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rînd(uri) șters(e)."
+msgstr[1] "%1$d rînd(uri) șters(e)."
+msgstr[2] "%1$d rînd(uri) șters(e)."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rînd(uri) inserat(e)."
+msgstr[1] "%1$d rînd(uri) inserat(e)."
+msgstr[2] "%1$d rînd(uri) inserat(e)."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nu există tabele"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Tabelele urmărite"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Nu există informații detaliate de stare disponibile pentru motorul de "
+"stocare."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s este disponibil pentru acest server MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s a fost dezactivat pentru acest server MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Acest server MySQL nu susține motorul de stocare %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Bază de date nevalidă"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Denumire de tabel nevalidă"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabelului %s i s-a dat un numele de %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Nici o previzualizare disponibilă."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "alege"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Tema implicită %s nu a fost găsită!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s nu a fost găsită!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Calea temei nu a fost găsită pentru tema %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Conexiune esuata: setari invalide."
@@ -1836,8 +2053,8 @@ msgstr "Bine ați venit la %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Motivul probabil pentru aceasta este că nu ați creat un fișier de "
"configurare. Puteți folosi %1$s vrăjitorul de setări %2$s pentru a crea un "
@@ -1948,14 +2165,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL connection collation"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Eroare"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2008,11 +2217,6 @@ msgstr "Tabele"
msgid "Data"
msgstr "Date"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexuri"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2304,9 +2508,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Dimensiune font"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Citare neînchisă"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Structură"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Structura și date"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Inserări complete"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Inserări extinse"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2983,12 +3264,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze de date"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Opțiuni de afișare a bazelor de date"
@@ -4546,87 +4821,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Citare neînchisă"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Structură"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Structura și date"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Inserări complete"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Inserări extinse"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4694,23 +4888,6 @@ msgstr ""
msgid "Add an event"
msgstr "Adaugă un server nou"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Connection for controluser as defined in your configuration failed."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serverul nu răspunde"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detalii..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4785,9 +4962,9 @@ msgstr "Lungime/Setare"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4844,11 +5021,6 @@ msgstr "Tip interogare"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Comentariu"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4912,6 +5084,23 @@ msgid ""
"3.11[/a]"
msgstr "Poate fi aproximativ. Vezi FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Connection for controluser as defined in your configuration failed."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serverul nu răspunde"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(sau soclul serverului MySQL local nu este configurat momentan)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detalii..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5082,12 +5271,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5888,8 +6077,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6204,44 +6393,6 @@ msgstr "Vizualizare"
msgid "Export contents"
msgstr "Modul de export"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Fișierul încărcat depășește condiția upload_max_filesize din php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Fișierul încărcat depășește directiva MAX_FILE_SIZE specificată în "
-"formularul HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Fișierul a fost încărcat numai parțial."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Lipsește un dosar temporar."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Eșec la scrierea fișierului pe disc."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Încărcarea fișierului a fost împiedicată de extensie."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Eroare necunoscută la încărcarea fișierului."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Eroare la mutarea fișierului încărcat, vezi FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6259,6 +6410,42 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Generat de"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Nu sînt baze de date"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Nu sînt baze de date"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6321,42 +6508,6 @@ msgstr "Denumirile coloanelor"
msgid "This plugin does not support compressed imports!"
msgstr "Modulul opțional nu suportă importuri comprimate!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Nu sînt baze de date"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Nu sînt baze de date"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6381,40 +6532,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Index nu este definit!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unic"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Împachetat"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinalitate"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Cheia primară a fost aruncată"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indexul %s a fost aruncat"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "Indecșii %1$s și %2$s par a fi egali și unul din ei poate fi șters."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6427,33 +6544,6 @@ msgstr "Nici unul(a)"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rînd(uri) afectat(e)."
-msgstr[1] "%1$d rînd(uri) afectat(e)."
-msgstr[2] "%1$d rînd(uri) afectat(e)."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rînd(uri) șters(e)."
-msgstr[1] "%1$d rînd(uri) șters(e)."
-msgstr[2] "%1$d rînd(uri) șters(e)."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rînd(uri) inserat(e)."
-msgstr[1] "%1$d rînd(uri) inserat(e)."
-msgstr[2] "%1$d rînd(uri) inserat(e)."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6697,22 +6787,6 @@ msgstr "Personalizează cadrul principal"
msgid "This format has no options"
msgstr "Acest format nu are opțiuni"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Nu s-a putut încărca configurația implicită din: „%1$s”"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nu există tabele"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Tabelele urmărite"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Nu este bine"
@@ -7108,6 +7182,64 @@ msgstr ""
msgid "Target database"
msgstr "Caută în baza de date"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Execută interogare/interogări SQL pe serverul %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Execută interogare SQL asupra bazei de date %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Calendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Denumirile coloanelor"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pune semn de carte la această comandă SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Înlocuiește semnul de carte cu același nume"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Delimitator"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Afișează această comandă din nou aici "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Numai vizualizare"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Locația fișierului textual"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "director de încărcare al serverului Web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7169,64 +7301,6 @@ msgstr "Identificator nevalid"
msgid "Unknown Punctuation String"
msgstr "Înșiruire de punctuație necunoscută"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Execută interogare/interogări SQL pe serverul %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Execută interogare SQL asupra bazei de date %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Calendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Denumirile coloanelor"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pune semn de carte la această comandă SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Permite tuturor utilizatorilor să acceseze acest semn de carte"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Înlocuiește semnul de carte cu același nume"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "A nu se suprascrie peste această interogare din cealaltă fereastră"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Delimitator"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Afișează această comandă din nou aici "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Numai vizualizare"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Locația fișierului textual"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "director de încărcare al serverului Web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7236,50 +7310,6 @@ msgstr ""
"Validatorul SQL nu poate fi inițializat. Verificați dacă e instalată "
"extesnsia necesară PHP, așa cum e descris în %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Nu există informații detaliate de stare disponibile pentru motorul de "
-"stocare."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s este disponibil pentru acest server MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s a fost dezactivat pentru acest server MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Acest server MySQL nu susține motorul de stocare %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Bază de date nevalidă"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Denumire de tabel nevalidă"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Eroare la redenumirea tabelului %1$s în %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabelului %s i s-a dat un numele de %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabelul pare a fi gol!"
@@ -7411,38 +7441,6 @@ msgstr "Definiție PARTIȚIE"
msgid "+ Add a value"
msgstr "Adaugă un server nou"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Nici o previzualizare disponibilă."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "alege"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Tema implicită %s nu a fost găsită!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s nu a fost găsită!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Calea temei nu a fost găsită pentru tema %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8576,8 +8574,8 @@ msgstr "Aruncă baza de date care are același nume ca utilizatorul."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Notă: phpMyAdmin folosește privilegiile utilizatorilor direct din tabelul de "
"privilegii din MySQL. Conținutul acestui tabel poate diferi de cel original. "
diff --git a/po/ru.po b/po/ru.po
index 85dd9885a7..4da0b365f0 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-16 22:26+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-24 21:23+0200\n"
"Last-Translator: Victor Volkov \n"
"Language-Team: russian \n"
+"Language: ru\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ru\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Поиск"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Поиск"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База данных %1$s была создана."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Комментарий к базе данных:"
@@ -133,9 +133,9 @@ msgstr "Комментарий к базе данных:"
msgid "Table comments"
msgstr "Комментарий к таблице"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Комментарий к таблице"
msgid "Column"
msgstr "Поле"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Поле"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Связи"
msgid "Comments"
msgstr "Комментарии"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Комментарии"
msgid "No"
msgstr "Нет"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Снять выделение"
msgid "The database name is empty!"
msgstr "Не указано имя базы данных!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "База данных %s переименована в %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "База данных %s была скопирована в %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Переименовать базу данных в"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Команда"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Удалить базу данных"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База данных %s была удалена."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Удалить базу данных (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Скопировать базу данных в"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Только структура"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и данные"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Только данные"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Перед копированием создать базу данных (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Добавить %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Добавить AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Добавить ограничения"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Переключиться на скопированную базу данных"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Переключиться на скопированную базу да
msgid "Collation"
msgstr "Сравнение"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +352,7 @@ msgstr ""
"Некоторые из расширенных возможностей phpMyAdmin недоступны. Для определения "
"причины нажмите %sздесь%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редакция или экспорт схемы связей"
@@ -501,116 +500,107 @@ msgstr "SQL-запрос к базе данных %s:"
msgid "Submit Query"
msgstr "Выполнить запрос"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL-запрос был успешно выполнен"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
-msgstr[0] ""
-msgstr[1] ""
-msgstr[2] ""
+msgstr[0] "Последним выражением в процедуре была затронута %d строка"
+msgstr[1] "Последним выражением в процедуре были затронуты %d строки"
+msgstr[2] "Последним выражением в процедуре было затронуто %d строк"
-#: db_routines.php:165
-#, fuzzy, php-format
-#| msgid "Allows executing stored routines."
+#: db_routines.php:167
+#, php-format
msgid "Execution results of routine %s"
-msgstr "Разрешает выполнение хранимых процедур."
+msgstr "Результаты выполнения процедуры %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL вернула пустой результат (т.е. ноль строк)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "Выполнены следующие запросы:"
+msgstr "Данный запрос не был выполнен: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Ответ MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
-#, fuzzy
-#| msgid "Error in Processing Request"
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Ошибка при обработке запроса"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
msgid "No routine with name %1$s found in database %2$s"
-msgstr "Таблиц в базе данных не найдено"
+msgstr "В базе данных %2$s процедура с именем %1$s не найдена"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
-msgstr ""
+msgstr "Выполнить процедуру"
-#: db_routines.php:259 db_routines.php:263
-#, fuzzy, php-format
-#| msgid "Export defaults"
+#: db_routines.php:261 db_routines.php:265
+#, php-format
msgid "Export of routine %s"
-msgstr "Экспорт"
+msgstr "Экспорт процедуры %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#: db_routines.php:290 libraries/db_routines.lib.php:960
+#, php-format
msgid "Invalid routine type: \"%s\""
-msgstr "Неверный индекс сервера: %s"
+msgstr "Ошибочный тип процедуры: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
-msgstr ""
+msgstr "Невозможно восстановить удаленную процедуру."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
-msgstr ""
+msgstr "Сохраненный запрос был:"
-#: db_routines.php:314
-#, fuzzy, php-format
-#| msgid "Column %s has been dropped"
+#: db_routines.php:316
+#, php-format
msgid "Routine %1$s has been modified."
-msgstr "Поле %s было удалено"
+msgstr "Была изменена процедура %1$s."
-#: db_routines.php:327
-#, fuzzy, php-format
-#| msgid "Table %1$s has been created."
+#: db_routines.php:329
+#, php-format
msgid "Routine %1$s has been created."
-msgstr "Таблица %1$s была создана."
+msgstr "Была создана процедура %1$s."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
-msgstr ""
+msgstr "При обработке вашего запроса были обнаружены ошибки:"
-#: db_routines.php:379
-#, fuzzy
-#| msgid "Create relation"
+#: db_routines.php:381
msgid "Create routine"
-msgstr "Создать связь"
+msgstr "Создать процедуру"
-#: db_routines.php:383
-#, fuzzy
-#| msgid "Edit mode"
+#: db_routines.php:385
msgid "Edit routine"
-msgstr "Редакция"
+msgstr "Изменить процедуру"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
+"Вы используете устаревшее 'mysql' расширение PHP, которое не позволяет "
+"выполнение множественных запросов. Выполнение некоторых хранимых процедур "
+"может привести к ошибке! Пожалуйста, для избежания проблем, используйте "
+"улучшенное 'mysqli' расширение."
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
@@ -684,10 +674,8 @@ msgid "Search in database"
msgstr "Поиск в базе данных"
#: db_search.php:300
-#, fuzzy
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "Слово(а) или значение(я) для поиска (групповой символ: \"%\"):"
+msgstr "Слова или значения для поиска (групповой символ: \"%\"):"
#: db_search.php:305
msgid "Find:"
@@ -737,8 +725,8 @@ msgstr "Слежение выключено."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Данное представление имеет, по меньшей мере, указанное количество строк. "
"Пожалуйста, обратитесь к %sдокументации%s."
@@ -807,8 +795,8 @@ msgstr "Версия для печати"
msgid "Empty"
msgstr "Очистить"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -881,9 +869,9 @@ msgstr "Обновлён"
msgid "Status"
msgstr "Состояние"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -977,8 +965,8 @@ msgstr "Дамп был сохранен в файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Вероятно, размер загружаемого файла слишком велик. Способы обхода данного "
"ограничения описаны в %sдокументации%s."
@@ -1160,11 +1148,11 @@ msgstr "Удаление выбранных пользователей"
msgid "Close"
msgstr "Закрыть"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Изменить"
@@ -1706,6 +1694,220 @@ msgstr "Минута"
msgid "Second"
msgstr "Секунда"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Размер шрифта"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Размер загружаемого файла превышает значение директивы upload_max_filesize "
+"установленное в конфигурационном файле PHP (php.ini)."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
+"определенной в HTML форме."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Загруженный файл был загружен только частично."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Не найден каталог для хранения временных файлов."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Ошибка при попытке записи файла на диск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Загрузка файла остановлена из-за расширения."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "При время загрузке файла произошла неизвестная ошибка."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс не определен!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индексы"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникальный"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Упакован"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Уникальных элементов"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Комментарий"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Первичный ключ был удален"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Индекс %s был удален"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базы данных"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Ошибка"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Затронута %1$d строка."
+msgstr[1] "Затронуто %1$d строки."
+msgstr[2] "Затронуто %1$d строк."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Удалена %1$d строка."
+msgstr[1] "Удалено %1$d строки."
+msgstr[2] "Удалено %1$d строк."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Добавлена %1$d строка."
+msgstr[1] "Добавлено %1$d строки."
+msgstr[2] "Добавлено %1$d строк."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Не удалось сохранить последнюю таблицу"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Недавние таблицы"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Отсутствуют недавние таблицы"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Дополнительная информация о состоянии данного типа таблиц - отсутствует."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Данный MySQL-сервер поддерживает таблицы типа %s."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Тип таблиц %s был отключен на данном MySQL сервере."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Некорректная база данных"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Неправильное имя таблицы"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблица %s была переименована в %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Не получилось сохранить настройки интерфейса таблицы"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Не найден правильный путь к изображениям для темы %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Предпросмотр не доступен."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Применить"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Тема по-умолчанию %s не найдена!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Тема %s не найдена!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Путь к файлам темы %s не найден!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Соединение невозможно! Неверные настройки."
@@ -1719,8 +1921,8 @@ msgstr "Добро пожаловать в %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Возможная причина - отсутствие файла конфигурации. Для его создания вы "
"можете воспользоваться %1$sсценарием установки%2$s."
@@ -1826,14 +2028,6 @@ msgstr "Ошибка PBMS"
msgid "PBMS connection failed:"
msgstr "Ошибка подключения к PBMS:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Ошибка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Ошибка получения информации о BLOB данных от PBMS:"
@@ -1886,11 +2080,6 @@ msgstr "Таблицы"
msgid "Data"
msgstr "Данные"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индексы"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2175,9 +2364,77 @@ msgstr "Файлы для загрузки отсутствуют"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Размер шрифта"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Оба"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Нигде"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Налево"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Направо"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Открыт"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Закрыт"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "данные"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура и данные"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Быстро - отображать минимальный набор параметров"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "По выбору - отображать все возможные параметры"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "По выбору - как выше, но без выбора быстро/по выбору"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "полная вставка"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "расширенная вставка"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "оба верхних варианта"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "иначе, чем в вариантах выше"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2841,12 +3098,6 @@ msgstr "Установите директории импорта и экспор
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базы данных"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Параметры отображения списка баз данных"
@@ -4499,78 +4750,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Некорректно введен IP адрес: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Оба"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Нигде"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Налево"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Направо"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Открыт"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Закрыт"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "данные"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура и данные"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Быстро - отображать минимальный набор параметров"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "По выбору - отображать все возможные параметры"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "По выбору - как выше, но без выбора быстро/по выбору"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "полная вставка"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "расширенная вставка"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "оба верхних варианта"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "иначе, чем в вариантах выше"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4641,26 +4820,6 @@ msgstr ""
msgid "Add an event"
msgstr "Добавить новый сервер"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Не удалось установить подключение для пользователя указанного в директиве "
-"controluser, с помощью параметров определенных в конфигурационном файле "
-"config.inc.php."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер не отвечает"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Детали..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4735,9 +4894,9 @@ msgstr "Длина/значения"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4796,11 +4955,6 @@ msgstr "Безопасность"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Комментарий"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4867,6 +5021,26 @@ msgstr ""
"Может быть приблизительно. Смотрите [a@./Documentation."
"html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Не удалось установить подключение для пользователя указанного в директиве "
+"controluser, с помощью параметров определенных в конфигурационном файле "
+"config.inc.php."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер не отвечает"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(либо сокет локального MySQL-сервера некорректно настроен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Детали..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5007,8 +5181,8 @@ msgstr ", @TABLE@ будет замещено именем таблицы"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Значение обрабатывается функцией %1$sstrftime%2$s, благодаря чему возможна "
"вставка текущей даты и времени. Дополнительно могут быть использованы "
@@ -5789,8 +5963,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Документацию и дальнейшую информацию по PBXT смотрите на %sдомашней странице "
"PrimeBase XT%s."
@@ -6099,48 +6273,6 @@ msgstr "Представления"
msgid "Export contents"
msgstr "Экспортировать содержимое"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Размер загружаемого файла превышает значение директивы upload_max_filesize "
-"установленное в конфигурационном файле PHP (php.ini)."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Размер загружаемого файла превышает значение директивы MAX_FILE_SIZE, "
-"определенной в HTML форме."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Загруженный файл был загружен только частично."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Не найден каталог для хранения временных файлов."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Ошибка при попытке записи файла на диск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Загрузка файла остановлена из-за расширения."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "При время загрузке файла произошла неизвестная ошибка."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Ошибка при перемещении загруженного файла, смотрите [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6160,6 +6292,40 @@ msgstr "Результат SQL-запроса"
msgid "Generated by"
msgstr "Создан"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Просмотреть детали структуры нажав на её имя"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Отредактировать структуру перейдя по ссылке \"Структура\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Перейти к базе данных"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "настройки"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Перейти к таблице"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Перейти к представлению (VIEW)"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6226,40 +6392,6 @@ msgstr "Названия столбцов"
msgid "This plugin does not support compressed imports!"
msgstr "Этот модуль не поддерживает импорт сжатых данных!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Следующие структуры были созданы, либо изменены. Вы можете:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Просмотреть детали структуры нажав на её имя"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Изменить любую настройку нажав на соответствующую ссылку \"Параметры\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Отредактировать структуру перейдя по ссылке \"Структура\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Перейти к базе данных"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "настройки"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Перейти к таблице"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Перейти к представлению (VIEW)"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6286,40 +6418,6 @@ msgstr ""
"Выбранный XML файл некорректен, либо неполон. Проверьте возможные ошибки и "
"попробуйте ещё раз."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс не определен!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникальный"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Упакован"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Уникальных элементов"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Первичный ключ был удален"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Индекс %s был удален"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "Индексы %1$s и %2$s равнозначны и один из них может быть удалён."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6330,30 +6428,6 @@ msgstr "Нет"
msgid "Convert to Kana"
msgstr "Конвертировать в Кану"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Затронута %1$d строка."
-msgstr[1] "Затронуто %1$d строки."
-msgstr[2] "Затронуто %1$d строк."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Удалена %1$d строка."
-msgstr[1] "Удалено %1$d строки."
-msgstr[2] "Удалено %1$d строк."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Добавлена %1$d строка."
-msgstr[1] "Добавлено %1$d строки."
-msgstr[2] "Добавлено %1$d строк."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "От"
@@ -6592,18 +6666,6 @@ msgstr "Обновить фрейм навигации"
msgid "This format has no options"
msgstr "Для этого формата нет настраиваемых параметров"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Не удалось сохранить последнюю таблицу"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Недавние таблицы"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Отсутствуют недавние таблицы"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Не готово"
@@ -6987,6 +7049,61 @@ msgstr "Различие"
msgid "Target database"
msgstr "Целевая база данных"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Выполнить SQL-запрос(ы) на сервере %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Очистить"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Столбцы"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Создание закладки"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Доступна для всех пользователей"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Заменить существующую с таким же именем"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Заблокировать содержимое окна запросов"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Разделитель"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Показать данный запрос снова"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Просмотр"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Выбор файла"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Из каталога загрузки"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7049,61 +7166,6 @@ msgstr "Неправильный идентификатор"
msgid "Unknown Punctuation String"
msgstr "Неизвестная пунктуация"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Выполнить SQL-запрос(ы) на сервере %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Выполнить SQL-запрос(ы) к базе данных %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Очистить"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Столбцы"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Создание закладки"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Доступна для всех пользователей"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Заменить существующую с таким же именем"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Заблокировать содержимое окна запросов"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Разделитель"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Показать данный запрос снова"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Просмотр"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Выбор файла"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Из каталога загрузки"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7113,49 +7175,6 @@ msgstr ""
"Проверка синтаксиса SQL не осуществима. Проверьте, установлены ли "
"необходимые модули расширений для PHP, описанные в %sдокументации%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Дополнительная информация о состоянии данного типа таблиц - отсутствует."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Данный MySQL-сервер поддерживает таблицы типа %s."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Тип таблиц %s был отключен на данном MySQL сервере."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Данный сервер MySQL не поддерживает тип таблиц %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Некорректная база данных"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Неправильное имя таблицы"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Ошибка при переименовании таблицы %1$s в %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблица %s была переименована в %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Не получилось сохранить настройки интерфейса таблицы"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Таблица - пуста!"
@@ -7276,38 +7295,6 @@ msgstr "Определение разделов (PARTITION)"
msgid "+ Add a value"
msgstr "+ Добавить новое значение"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Не найден правильный путь к изображениям для темы %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Предпросмотр не доступен."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Применить"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Тема по-умолчанию %s не найдена!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Тема %s не найдена!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Путь к файлам темы %s не найден!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8358,8 +8345,8 @@ msgstr "Удалить базы данных, имена которых совп
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примечание: phpMyAdmin получает информацию о пользовательских привилегиях "
"непосредственно из таблиц привилегий MySQL. Содержимое этих таблиц может "
@@ -9948,8 +9935,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"При необходимости используйте дополнительные настройки безопасности - %"
-"sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
+"При необходимости используйте дополнительные настройки безопасности - "
+"%sидентификация по хосту%s и %sсписок доверенных прокси серверов%s. Однако, "
"защита по IP может быть ненадежной, если ваш IP не является выделенным и "
"кроме вас принадлежит тысячам пользователей того же Интернет Провайдера."
@@ -10715,8 +10702,8 @@ msgid ""
"No themes support; please check your configuration and/or your themes in "
"directory %s."
msgstr ""
-"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге %"
-"s."
+"Поддержка тем не работает, проверьте конфигурацию и наличие тем в каталоге "
+"%s."
#: themes.php:41
msgid "Get more themes!"
diff --git a/po/si.po b/po/si.po
index 5c7ed6b1e7..916d88a1bc 100644
--- a/po/si.po
+++ b/po/si.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-04 15:35+0200\n"
"Last-Translator: Madhura Jayaratne \n"
"Language-Team: sinhala \n"
+"Language: si\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: si\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "සෙවීම"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "සෙවීම"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "යන්න"
@@ -119,7 +119,7 @@ msgstr "%s ගොනුව මෙම පද්ධතියේ නොමැත.
msgid "Database %1$s has been created."
msgstr "%1$s දත්තගබඩාව සාදන ලදි."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "දත්තගබඩා විස්තර: "
@@ -129,9 +129,9 @@ msgstr "දත්තගබඩා විස්තර: "
msgid "Table comments"
msgstr "වගු විස්තර"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "වගු විස්තර"
msgid "Column"
msgstr "තීර"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "තීර"
msgid "Type"
msgstr "වර්ගය"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,13 +195,12 @@ msgstr "Links to"
msgid "Comments"
msgstr "විස්තරය"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +211,17 @@ msgstr "විස්තරය"
msgid "No"
msgstr "නැත"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -259,79 +258,79 @@ msgstr "සියල්ලේ තෝරාගැනීම ඉවත් කරන
msgid "The database name is empty!"
msgstr "දත්තගබඩා නම හිස්ව පවතී!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "%s දත්තගබඩාව %s බවට නම වෙනස් කරන ලදි"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "%s දත්තගබඩාව %s වෙතට පිටපත් කරන ලදි"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "බවට දත්තගබඩාවේ නම වෙනස් කරන්න"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "විධානය"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "දත්තගබඩාව ඉවත් කරන්න"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s දත්තගබඩාව හලන ලදි."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "දත්තගබඩාව හලන්න. (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "වෙත දත්තගබඩාව පිටවත් කරන්න"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "සැකිල්ල පමණයි"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "සැකිල්ල සහ දත්ත"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "දත්ත පමණයි"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "පිටපත් කිරීමට ප්රථම දත්තගබඩාවක් සාදන්න"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s එක් කරන්න"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT අගයක් එක් කරන්න"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "සීමා බාධවන් එක් කරන්න"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙත මාරු වන්න"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -340,7 +339,7 @@ msgstr "පිටපත් කරන ලද දත්තගබඩාව වෙ
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -349,7 +348,7 @@ msgstr ""
"phpMyAdmin හි configuration storage අක්රිය කර ඇත. ඇයිදැයි සොයා බැලීමට %sමෙතන%s ක්ලික් "
"කරන්න."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "ක්රමානුරූපය සංස්කරණය හෝ අපනයනය කරන්න"
@@ -495,109 +494,109 @@ msgstr "%s දත්තගබඩාව මත SQL විමසුම:"
msgid "Submit Query"
msgstr "විමසුම ඉදිරිපත් කරන්න"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "ඔබගේ SQL විමසුම සාර්ථකව ක්රියාවට නංවන ලදි"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Allows executing stored routines."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returned an empty result set (i.e. zero rows)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "පහත විමසුම් ක්රියාත්මක කරන ලදි:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL said: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "ඉල්ලීම පිරිසැකසීමේදී දෝශ ඇතිවිය"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "දත්තගබඩාවේ වගු කිසිවක් සොයා ගැනීමට නොමැත"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "අපනයන පෙරනිමි"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "අවලංගු සේවාදායක සුචිය: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "%s තීරුව හලන ලදි"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "%1$s වගුව සාදන ලදි."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "සර්වරයේ සංස්කරණය"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "සංස්කරණ ප්රකාරය"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -727,8 +726,8 @@ msgstr "අවධානය අක්රීයයි."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"මෙම දසුනේ අවම වශයෙන් පේළි මෙතරම් සංඛයාවක් ඇත. කරුණාකර %s ලේඛනය %s අධ්යනය කරන්න."
@@ -796,8 +795,8 @@ msgstr "මුද්රණ දර්ශනය"
msgid "Empty"
msgstr "හිස්"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -870,9 +869,9 @@ msgstr "යාවත්කාලීන කරන ලදි"
msgid "Status"
msgstr "තත්වය"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -966,11 +965,11 @@ msgstr "%s ගොනුවට නික්ෂේප දත්ත සුරකි
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1148,11 +1147,11 @@ msgstr "තෝරාගත් භාවිතා කරන්නන් ඉවත
msgid "Close"
msgstr "වසන්න"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "සංස්කරණය කරන්න"
@@ -1704,6 +1703,213 @@ msgstr "මිනිත්තු"
msgid "Second"
msgstr "තත්පර"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "No index defined!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "සූචියන්"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "අනන්ය"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "අහුරන ලද"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "ටීකාව"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "ප්රාථමික මූලය හලන ලදි"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s සූචිය හලන ලදි"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "දත්තගබඩා"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "දෝෂය"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "පේළියකට බලපෑවේය."
+msgstr[1] "පේළි %1$dකට බලපෑවේය."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
+msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි."
+msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "නූතන වගු සුරැකීම අසමත් විය"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "නූතන වගු"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "නූතන වගු කිසිවක් නොමැත"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"There is no detailed status information available for this storage engine."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s is available on this MySQL server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s has been disabled for this MySQL server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "This MySQL server does not support the %s storage engine."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "වලංගු නොවන දත්තගබඩාව"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "වලංගු නොවන වගු නම"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "No preview available."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "take it"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Theme %s not found!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Theme path not found for theme %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "සම්බන්ධ විය නොහැක : වලංගු නොවන සැකසුමකි."
@@ -1717,8 +1923,8 @@ msgstr "%s වෙත ආයුබෝවන්"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Probably reason of this is that you did not create configuration file. You "
"might want to use %1$ssetup script%2$s to create one."
@@ -1823,14 +2029,6 @@ msgstr "PBMS දෝෂය"
msgid "PBMS connection failed:"
msgstr "PBMS සම්බන්ධතාවය අසමත් විය:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "දෝෂය"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS BLOB තොරතුරු ලබාගැනීම අසමත් විය:"
@@ -1883,11 +2081,6 @@ msgstr "වගු"
msgid "Data"
msgstr "දත්ත"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "සූචියන්"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2168,9 +2361,77 @@ msgstr "උඩුගත කිරීම සඳහා ගොනු නොමැ
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "ෆොන්ට් එකෙහි ප්රමාණය"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "දෙකම"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "කොහේවත් නැත"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "වම"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "දකුණ"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "විවෘත"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "වසන ලද"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "සැකිල්ල"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "දත්ත"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "සැකිල්ල සහ දත්ත"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "විස්තෘත ඇතුළු කිරීම්"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "ඉහත ද්විත්වයම"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "ඉහත දෙකින් එකක්වත් නොව"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2809,12 +3070,6 @@ msgstr "ආනයන, අපනයන ඩිරෙක්ටරි සහ හැ
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "දත්තගබඩා"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "දත්තගබඩා පෙන්වුම් විකල්ප"
@@ -4318,78 +4573,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "දෙකම"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "කොහේවත් නැත"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "වම"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "දකුණ"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "විවෘත"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "වසන ලද"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "සැකිල්ල"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "දත්ත"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "සැකිල්ල සහ දත්ත"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "කඩිනම් - අවම තෝරා ගැනීම් පමණක් පෙන්වන්න"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "අභිමත - සියලුම තෝරා ගැනීම් පෙන්වන්න"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "අභිමත - ඉහත මෙන්, නමුත් අභිමත/කඩිනම් තෝරාගැනීම් නොමෙතිව"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "සම්පූර්ණ ඇතුළු කිරීම්"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "විස්තෘත ඇතුළු කිරීම්"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "ඉහත ද්විත්වයම"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "ඉහත දෙකින් එකක්වත් නොව"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4458,23 +4641,6 @@ msgstr ""
msgid "Add an event"
msgstr "නව සේවාදායකයක් එක් කරන්න"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(or the local MySQL server's socket is not correctly configured)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "තොරතුරු..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4549,9 +4715,9 @@ msgstr "දිග/අගයන්"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4610,11 +4776,6 @@ msgstr "ආරක්ෂාව"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "ටීකාව"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4681,6 +4842,23 @@ msgstr ""
"සමහර විට ආසන්න වශයෙන්. [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/"
"a] බලන්න"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "සේවාදායකය ප්රතිචාර නොදක්වයි"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(or the local MySQL server's socket is not correctly configured)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "තොරතුරු..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4829,12 +5007,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -5577,8 +5755,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5877,44 +6055,6 @@ msgstr "දසුන්"
msgid "Export contents"
msgstr "අපනයන වර්ගය"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "උඩුගත කෙරුනු ගොනුව php.ini හි upload_max_filesize අගය ඉක්මවයි."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "උඩුගත කෙරුනු ගොනුව HTML පෝරමයෙහි සඳහන් MAX_FILE_SIZE අගය ඉක්මවයි."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "උඩුගත කෙරුනු ගොනුවේ කොටසක් පමණක් උඩුගත විය."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "තාවකාලික ෆෝල්ඩරයක් නැතිවී ඇත."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ගොනුව ඩිස්කයට පිටපත් කිරීම අසාර්ථක විය."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "දිගුව නිසා ගොනුව උඩුගත කිරීම නවතන ලදි."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ගොනුව උඩුගත කිරීමේදී දෝෂයක් ඇති විය."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"උඩුගත කෙරුණු ගොනුව ගෙන යාමේදී දෝෂයක් ඇති විය, [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a] බලන්න"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5934,6 +6074,43 @@ msgstr "SQL ප්රතිළුල"
msgid "Generated by"
msgstr "උත්පාදනය කරන ලද්දේ"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "දත්තගබඩා නොමැත"
+
+# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "සිටුවම්"
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "දත්තගබඩා නොමැත"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5997,43 +6174,6 @@ msgstr "තීර නම්"
msgid "This plugin does not support compressed imports!"
msgstr "This plugin does not support compressed imports!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "දත්තගබඩා නොමැත"
-
-# සිටුවම් = settings. Source: Glossary of Information Technology Terms - ICTA
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "සිටුවම්"
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "දත්තගබඩා නොමැත"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "ප්රතිශත පූර්ණ සංඛ්යා ලෙස ආනයනය කරන්න (උදා. 12.00%, 12 ලෙස)"
@@ -6056,40 +6196,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "No index defined!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "අනන්ය"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "අහුරන ලද"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "ප්රාථමික මූලය හලන ලදි"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s සූචිය හලන ලදි"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "%1$s හා %2$s සුචි එක සමාන බැවින් එකක් ඉවත් කල හැක."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6102,27 +6208,6 @@ msgstr "කිසිවක් නැත"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "පේළියකට බලපෑවේය."
-msgstr[1] "පේළි %1$dකට බලපෑවේය."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "පේළි %1$d ක් ඉවත් කෙරුනි."
-msgstr[1] "පේළි %1$d ක් ඉවත් කෙරුනි."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "පේළි %1$d ක් ඇතුල් කෙරුනි."
-msgstr[1] "පේළි %1$d ක් ඇතුල් කෙරුනි."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6365,18 +6450,6 @@ msgstr ""
msgid "This format has no options"
msgstr "මෙම ආකෘතියේ ආකෘති-විශේෂී තෝරා ගැනීම් කිසිවක් නැත"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "නූතන වගු සුරැකීම අසමත් විය"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "නූතන වගු"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "නූතන වගු කිසිවක් නොමැත"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "OK නැත"
@@ -6760,6 +6833,64 @@ msgstr ""
msgid "Target database"
msgstr "දත්තගබඩාවේ සොයන්න"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "SQL විමසුමක් සිදු කරන්න/%s සේවාදායකය මත විමසුම්"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "දින දර්ශනය"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "තීර නම්"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Do not overwrite this query from outside the window"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "පරිසීමකය"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "දර්ශනය කිරීම පමණි"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "පාඨ ගොනුවෙහි පිහිටුම"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6822,64 +6953,6 @@ msgstr "වලංගු නොවන හඳුන්වනය"
msgid "Unknown Punctuation String"
msgstr "නොදන්නා විරාම අකුරු වැල"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "SQL විමසුමක් සිදු කරන්න/%s සේවාදායකය මත විමසුම්"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "SQL විමසුමක් සිදු කරන්න/%s දත්තගබඩාව මත විමසුම්"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "දින දර්ශනය"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "තීර නම්"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "මෙම SQL විමසුම පොත් සලකුණුගත කරන්න"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "සියලු භාවිතා කරන්නනට මෙම පොත් සලකුණට පිවිසීමට ඉඩ දෙන්න"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "එකම නම ඇති පොත් සලකුණ ප්රතිස්ථාපනය කරන්න"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Do not overwrite this query from outside the window"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "පරිසීමකය"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " මෙම විමසුම මෙහි නැවත පෙන්වන්න "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "දර්ශනය කිරීම පමණි"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "පාඨ ගොනුවෙහි පිහිටුම"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "වෙබ් සේවාදායකයේ උඩුගත ඩිරෙක්ටරිය"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6889,49 +6962,6 @@ msgstr ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"There is no detailed status information available for this storage engine."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s is available on this MySQL server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s has been disabled for this MySQL server."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "This MySQL server does not support the %s storage engine."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "වලංගු නොවන දත්තගබඩාව"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "වලංගු නොවන වගු නම"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s සිට %2$s දක්වා වගුවේ නම් වෙනස් කිරීමේ දෝෂයක් ඇත"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s වගුව %s බවට නම වෙනස් කරන ලදි"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "වගු පරිශීලක අතුරුමුහුණත් සඳහා අභිමතයන් සුරැකීම අසමත් විය"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7060,38 +7090,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "+ නව භාවිතා කරන්නෙක් එක් කරන්න"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "No preview available."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "take it"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "%s පෙරනිමි තේමාව සොයාගැනීමට නොමැත!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Theme %s not found!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Theme path not found for theme %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -7259,8 +7257,8 @@ msgid ""
"Your preferences will be saved for current session only. Storing them "
"permanently requires %sphpMyAdmin configuration storage%s."
msgstr ""
-"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා %"
-"sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
+"මෙම සැසිය සඳහා පමණක් ඔබගේ තෝරාගැනීම් සුරැකේ. තෝරාගැනීම් ස්ථාවරව සුරැකීම සඳහා "
+"%sphpMyAdmin වින්යාස ගබඩාව%s අවශ්යය."
#: libraries/user_preferences.lib.php:142
msgid "Could not save configuration"
@@ -8147,8 +8145,8 @@ msgstr "භාවිතා කරන්නන් හා සමාන නම්
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"සටහන: phpMyAdmin භාවිත කරන්නන්ගේ වරප්රසාද ලබාගනුයේ MySQL හි වරප්රසාද වගුවෙනි. "
"සේවාදායකයේ වරප්රසාද වෙනම ම වෙනස් කර ඇත්නම් ඉහත වගුවේ දත්ත සේවාදායකයේ වරප්රසාද වලට "
diff --git a/po/sk.po b/po/sk.po
index cb8583f85a..de9b0bd16a 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-03 14:53+0200\n"
"Last-Translator: Martin Lacina \n"
"Language-Team: slovak \n"
+"Language: sk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sk\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Hľadať"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Hľadať"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Vykonaj"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databáza %1$s bola vytvorená."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentár k databáze: "
@@ -132,9 +132,9 @@ msgstr "Komentár k databáze: "
msgid "Table comments"
msgstr "Komentár k tabuľke"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentár k tabuľke"
msgid "Column"
msgstr "Stĺpce"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stĺpce"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Linkovať na"
msgid "Comments"
msgstr "Komentáre"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Komentáre"
msgid "No"
msgstr "Nie"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Odznačiť všetko"
msgid "The database name is empty!"
msgstr "Meno databázy je prázdne!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Databáza %s bola premenovaná na %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Databáza %s bola skopírovaná na %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Premenovať databázu na"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Príkaz"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Odstrániť databázu"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databáza %s bola zmazaná."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Odstrániť databázu (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Skopírovať databázu na"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Iba štruktúru"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Štruktúru a dáta"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Iba dáta"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Vytvoriť databázu (CREATE DATABASE) pred kopírovaním"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Pridať %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Pridať hodnotu AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Pridať obmedzenia"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prepnúť na skopírovanú databázu"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Prepnúť na skopírovanú databázu"
msgid "Collation"
msgstr "Zotriedenie"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Konfiguračná pamäť phpMyAdmina bola deaktivovaná. Ak chcete zistiť prečo, "
"kliknite %ssem%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Upraviť alebo exportovať relačnú schému"
@@ -499,14 +498,14 @@ msgstr "SQL dopyt v databáze %s:"
msgid "Submit Query"
msgstr "Odošli dopyt"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL dopyt bol úspešne vykonaný"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -514,95 +513,95 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Umožňuje spúšťať uložené procedúry."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL vrátil prázdny výsledok (tj. nulový počet riadkov)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL hlási: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "Chyba pri spracovanie požiadavku"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "V tejto databáze neboli nájdené žiadne tabuľky"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "Východzie nastavenia exportu"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "Chybný index servera: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Stĺpec %s bol odstránený"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Tabuľka %1$s bola vytvorená."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Vytvoriť relaciu"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Režim úprav"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -735,8 +734,8 @@ msgstr "Sledovanie nie je aktívne."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Tento pohľad má aspoň toľko riadok. Podrobnosti nájdete v %sdokumentaci%s."
@@ -804,8 +803,8 @@ msgstr "Náhľad k tlači"
msgid "Empty"
msgstr "Vyprázdniť"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -878,9 +877,9 @@ msgstr "Aktualizované"
msgid "Status"
msgstr "Stav"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -974,8 +973,8 @@ msgstr "Výpis bol uložený do súboru %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Pravdepodobne ste sa pokúsili uploadnuť príliš veľký súbor. Prečítajte si "
"prosím %sdokumentáciu%s, ako sa dá toto obmedzenie obísť."
@@ -1158,11 +1157,11 @@ msgstr "Odstránenie vybraných používateľov"
msgid "Close"
msgstr "Zavrieť"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Upraviť"
@@ -1706,6 +1705,226 @@ msgstr "Minúty"
msgid "Second"
msgstr "Sekundy"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veľkosť písma"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize "
+"v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá "
+"bola nastavená v HTML formulári."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Súbor bol nahraný len čiastočne."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Chýba adresár pre dočasné súbory."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Chyba pri zápise súboru na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nahrávanie súboru bolo zastavené rozšírením."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznáma chyba pri nahrávaní súboru."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Chyba pri presune nahrávaného súboru, viď [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Nebol definovaný žiadny index!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indexy"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikátny"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Zabalené"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Mohutnosť"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Komentár"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primárny kľúč bol zrušený"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index pre %s bol odstránený"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne "
+"odstránený."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databázy"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Chyba"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Ovplyvnený bol %1$d riadok."
+msgstr[1] "Ovplyvnené boli %1$d riadky."
+msgstr[2] "Ovplyvnených bolo %1$d riadkov."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Bol zmazaný %1$d riadok."
+msgstr[1] "Boli zmazané %1$d riadky."
+msgstr[2] "Bolo zmazaných %1$d riadkov."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Bol vložený %1$d riadok."
+msgstr[1] "Boli vložené %1$d riadky."
+msgstr[2] "Bolo vložených %1$d riadkov."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Počítať tabuľky"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are no recent tables"
+msgstr "Žiadny súbor pre nahrávanie"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Tento MySQL server nepodporuje úložný systém %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Chybná databáza"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Chybné meno tabuľky"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabuľka %s bola premenovaná na %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Náhľad nie je dostupný."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "zvoliť"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Predvolený vzhľad %s nebol nájdený!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Vzhľad %s nebol nájdený!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Nepodarilo sa pripojiť: chybné nastavenia."
@@ -1719,8 +1938,8 @@ msgstr "Vitajte v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Pravdepodobná príčina je, že neexistuje konfiguračný súbor. Na jeho "
"vytvorenie môžete použiť %1$skonfiguračný skript%2$s."
@@ -1827,14 +2046,6 @@ msgstr "Chyba PBMS"
msgid "PBMS connection failed:"
msgstr "Pripojenie k PBMS zlyhalo:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Chyba"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Získavanie informácii o BLOBe z PBMS zlyhalo:"
@@ -1887,11 +2098,6 @@ msgstr "Tabuľky"
msgid "Data"
msgstr "Dáta"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indexy"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2171,9 +2377,77 @@ msgstr "Žiadny súbor pre nahrávanie"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veľkosť písma"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Obidva"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Otvorené"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zatvorené"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "štruktúra"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "dáta"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "štruktúra a dáta"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Vlastný - zobrazí všetky voľby nastavenia"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "úplné vloženia"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "Rozšírené vkladania"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "obidve vyššie uvedené"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "žiadny z vyššie uvedených"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2826,12 +3100,6 @@ msgstr "Nastaví adresáre pre import a export a voľby kompresie"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databázy"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Nastavenia zobrazenia databáz"
@@ -4440,78 +4708,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Nesprávna IP adresa: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Obidva"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Otvorené"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zatvorené"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "štruktúra"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "dáta"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "štruktúra a dáta"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Rýchly - zobrazí len minimum volieb pre nastavenie"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Vlastný - zobrazí všetky voľby nastavenia"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Vlastný - ako vyššie, ale bez voľby rýchly/vlastný"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "úplné vloženia"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "Rozšírené vkladania"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "obidve vyššie uvedené"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "žiadny z vyššie uvedených"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4581,23 +4777,6 @@ msgstr ""
msgid "Add an event"
msgstr "Pridať nového používateľa"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server neodpovedá"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4672,9 +4851,9 @@ msgstr "Dĺžka/Nastaviť*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4732,11 +4911,6 @@ msgstr "Zabezpečenie"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Komentár"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4801,6 +4975,23 @@ msgstr ""
"Môže byť nepresné. Viď [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11"
"[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Nepodarilo sa pripojiť ku controluser podľa nastavení z konfigurácie."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server neodpovedá"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(alebo soket lokálneho MySQL servra nie je správne nastavený)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4940,8 +5131,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Táto hodnota je interpretovaná pomocou %1$sstrftime%2$s, takže môžete použiť "
"reťazec pre formátovanie dátumu a času. Naviac budú vykonané tieto "
@@ -5672,8 +5863,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5958,48 +6149,6 @@ msgstr "Pohľady"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Veľkosť nahrávaného súboru prekračuje hodnotu premennej upload_max_filesize "
-"v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Veľkosť nahrávaného súboru prekračuje hodnotu premennej MAX_FILE_SIZE, ktorá "
-"bola nastavená v HTML formulári."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Súbor bol nahraný len čiastočne."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Chýba adresár pre dočasné súbory."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Chyba pri zápise súboru na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nahrávanie súboru bolo zastavené rozšírením."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznáma chyba pri nahrávaní súboru."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Chyba pri presune nahrávaného súboru, viď [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6019,6 +6168,40 @@ msgstr "výsledok SQL"
msgid "Generated by"
msgstr "Vygenerované"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Prejsť do databázy"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavenia"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Prejsť do tabuľky"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Prejsť na Prejsť na pohľad"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6078,40 +6261,6 @@ msgstr "Názvy stĺpcov"
msgid "This plugin does not support compressed imports!"
msgstr "Tento plug-in nepodporuje import komprimovaných súborov!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Nasledujúce tabuľky boli vytvorené alebo zmenené. Teraz možete:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Zobraziť obsah tabuľky kliknuťím na jej názov"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Zmeniť ľubovolné nastavenia kliknutím na odkaz \"Nastavenia\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Upraviť štruktúru kliknutím na odkaz \"Štruktúra\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Prejsť do databázy"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavenia"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Prejsť do tabuľky"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Prejsť na Prejsť na pohľad"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6134,42 +6283,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Nebol definovaný žiadny index!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikátny"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Zabalené"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Mohutnosť"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primárny kľúč bol zrušený"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index pre %s bol odstránený"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Indexy %1$s a %2$s vyzerajú rovnaké a jeden z nich môže byť pravdepodobne "
-"odstránený."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6180,30 +6293,6 @@ msgstr "Žiadny"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Ovplyvnený bol %1$d riadok."
-msgstr[1] "Ovplyvnené boli %1$d riadky."
-msgstr[2] "Ovplyvnených bolo %1$d riadkov."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Bol zmazaný %1$d riadok."
-msgstr[1] "Boli zmazané %1$d riadky."
-msgstr[2] "Bolo zmazaných %1$d riadkov."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Bol vložený %1$d riadok."
-msgstr[1] "Boli vložené %1$d riadky."
-msgstr[2] "Bolo vložených %1$d riadkov."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Z"
@@ -6443,22 +6532,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Tento formát nemá žiadne nastavenia"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Nepodarilo sa uložiť najnovšíu tabuľku"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Počítať tabuľky"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no files to upload"
-msgid "There are no recent tables"
-msgstr "Žiadny súbor pre nahrávanie"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "chyba"
@@ -6839,6 +6912,61 @@ msgstr ""
msgid "Target database"
msgstr "Cieľová databáza"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Spustiť SQL príkaz(y) na serveri %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Vyčistiť"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Stĺpce"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Pridať tento SQL dopyt do obľúbených"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dovoliť používať túto položku všetkým používateľom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Prepísať existujúci príkaz s rovnakým menom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Neprepisovať tento dopyt z hlavného okna"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Oddeľovač"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Zobraziť tento dopyt znovu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Iba prezrieť"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Umiestnenie textového súboru"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "upload adresár web serveru"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6901,61 +7029,6 @@ msgstr "Neplatný identifikátor"
msgid "Unknown Punctuation String"
msgstr "Neznámy interpunkčný reťazec"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Spustiť SQL príkaz(y) na serveri %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Spustiť SQL dopyt/dopyty na databázu %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Vyčistiť"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Stĺpce"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Pridať tento SQL dopyt do obľúbených"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dovoliť používať túto položku všetkým používateľom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Prepísať existujúci príkaz s rovnakým menom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Neprepisovať tento dopyt z hlavného okna"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Oddeľovač"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Zobraziť tento dopyt znovu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Iba prezrieť"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Umiestnenie textového súboru"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "upload adresár web serveru"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6963,51 +7036,8 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
"SQL validator nemohol byť inicializovaný. Prosím skontrolujte, či sú "
-"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v %"
-"sdocumentation%s."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Pre tento úložný systém nie sú dostupné žiadne podrobnejšie informácie."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Úložný systém %s je dostupný na tomto MySQL serveri."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Úložný systém %s bol zakázaný na tomto MySQL serveri."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Tento MySQL server nepodporuje úložný systém %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Chybná databáza"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Chybné meno tabuľky"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Chyba pri premenovaní tabuľky %1$s na %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabuľka %s bola premenovaná na %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"nainštalované všetky potrebné rozšírenia php, tak ako sú popísané v "
+"%sdocumentation%s."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7128,38 +7158,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Pridať nového používateľa"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nebola nájdená platná cesta k obrázkom pre vzhľad %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Náhľad nie je dostupný."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "zvoliť"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Predvolený vzhľad %s nebol nájdený!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Vzhľad %s nebol nájdený!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nebola nájdená platná cesta ku vzhľadu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7733,8 +7731,8 @@ msgid ""
"You can set more settings by modifying config.inc.php, eg. by using %sSetup "
"script%s."
msgstr ""
-"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím %"
-"sNastavovacieho skriptu%s."
+"Ďalšie nastavenia môžete urobiť úpravou config.inc.php, napr. použitím "
+"%sNastavovacieho skriptu%s."
#: prefs_manage.php:302
msgid "Save to browser's storage"
@@ -8178,13 +8176,13 @@ msgstr "Odstrániť databázy s rovnakým menom ako majú používatelia."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Poznámka: phpMyAdmin získava práva používateľov priamo z tabuliek MySQL. "
"Obsah týchto tabuliek sa môže líšiť od práv, ktoré používa server, ak boli "
-"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať %"
-"sznovunačítanie práv%s predtým ako budete pokračovať."
+"tieto tabuľky ručne upravené. V tomto prípade sa odporúča vykonať "
+"%sznovunačítanie práv%s predtým ako budete pokračovať."
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10683,8 +10681,8 @@ msgstr "Premenovať pohľad na"
#~ msgid "Imported file compression will be automatically detected from: %s"
#~ msgstr ""
-#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: %"
-#~ "s"
+#~ "Kompresia importovaného súboru bude rozpoznaná automaticky. Podporované: "
+#~ "%s"
#~ msgid "Add into comments"
#~ msgstr "Pridať do komentárov"
diff --git a/po/sl.po b/po/sl.po
index 6d06c26121..dd82dbd083 100644
--- a/po/sl.po
+++ b/po/sl.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-23 23:03+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-25 10:41+0200\n"
"Last-Translator: Domen \n"
"Language-Team: slovenian \n"
+"Language: sl\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sl\n"
"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n"
"%100==4 ? 2 : 3);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Iskanje"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Iskanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Izvedi"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Zbirka podatkov %1$s je ustvarjena."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Pripomba zbirke podatkov: "
@@ -132,9 +132,9 @@ msgstr "Pripomba zbirke podatkov: "
msgid "Table comments"
msgstr "Pripomba tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Pripomba tabele"
msgid "Column"
msgstr "Stolpec"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Stolpec"
msgid "Type"
msgstr "Vrsta"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Povezave z"
msgid "Comments"
msgstr "Pripombe"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Pripombe"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Prekliči izbor vsega"
msgid "The database name is empty!"
msgstr "Ime zbirke podatkov je prazno!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Zbirka podatkov %s je preimenovana v %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Zbirka podatkov %s je kopirana v %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj zbirko podatkov v"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Ukaz"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Odstrani zbirko podatkov"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Zbirka podatkov %s je zavržena."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Zavrzi zbirko podatkov (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj zbirko podatkov v"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura in podatki"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podatki"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE pred kopiranjem"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj vrednost AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Dodaj omejitve"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Preklopi na kopirano zbirko podatkov"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Preklopi na kopirano zbirko podatkov"
msgid "Collation"
msgstr "Pravilo za razvrščanje znakov"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"Hramba konfiguracije phpMyAdmin je bila onemogočena. Če želite izvedeti "
"zakaj, kliknite %stukaj%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Uredi ali izvozi relacijsko shemo"
@@ -500,14 +499,14 @@ msgstr "Poizvedba SQL na zbirki podatkov %s:"
msgid "Submit Query"
msgstr "Izvedi poizvedbo"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Poizvedba SQL je bila uspešno izvedena"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -516,84 +515,83 @@ msgstr[1] "Zadnja izjava znotraj procedure je spremenila %d vrstici"
msgstr[2] "Zadnja izjava znotraj procedure je spremenila %d vrstice"
msgstr[3] "Zadnja izjava znotraj procedure je spremenila %d vrstic"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "Rezultati izvedbe rutine %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vrnil kot rezultat prazno množico (npr. nič vrstic)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "Poizvedba \"%s\" je spodletela"
+msgstr "Naslednja poizvedba je spodletela: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL je vrnil: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "Napaka v obdelovanju zahteve"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
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"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Izvedi rutino"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "Izvoz rutine %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Neveljavna vrsta rutine: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Oprostite, zavržene rutine nam ni uspelo obnoviti."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "Varnostno kopirana poizvedba je bila:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Rutina %1$s je bila spremenjena."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Rutina %1$s je bila ustvarjena."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "Med obdelovanjem vaše zahteve je prišlo do ene ali več napak:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Ustvari rutino"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Uredi rutino"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -727,8 +725,8 @@ msgstr "Sledenje ni aktivno."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Pogled ima vsaj toliko vrstic. Prosimo, oglejte si %sdokumentacijo%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -795,8 +793,8 @@ msgstr "Pogled za tiskanje"
msgid "Empty"
msgstr "Izprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -869,9 +867,9 @@ msgstr "Posodobljeno"
msgid "Status"
msgstr "Stanje"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -965,8 +963,8 @@ msgstr "Dump je shranjen v datoteko %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Najverjetneje ste poskušali naložiti preveliko datoteko. Prosimo, oglejte si "
"%sdokumentacijo%s za načine, kako obiti to omejitev."
@@ -1147,11 +1145,11 @@ msgstr "Odstranjevanje izbranih uporabnikov"
msgid "Close"
msgstr "Zapri"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Uredi"
@@ -1682,6 +1680,223 @@ msgstr "Minuta"
msgid "Second"
msgstr "Sekunda"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Velikost pisave"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
+"HTML."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Naložena datoteka je bila naložena samo delno."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Manjka začasna mapa."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Pisanje datoteke na disk je spodletelo."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Nalaganje datoteke je ustavila razširitev."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Neznana napaka pri nalaganju datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Napaka pri premikanju naložene datoteke, glej [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ni definiranega indeksa!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indeksi"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Edinstven"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Stisnjeno"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Pripomba"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je zavržen"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Indeks %s je zavržen"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko "
+"odstrani."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Zbirke podatkov"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Napaka"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "Spremenjena je %1$d vrstica."
+msgstr[1] "Spremenjeni sta %1$d vrstici."
+msgstr[2] "Spremenjene so %1$d vrstice."
+msgstr[3] "Spremenjenih je %1$d vrstic."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Izbrisana je %1$d vrstica."
+msgstr[1] "Izbrisani sta %1$d vrstici."
+msgstr[2] "Izbrisane so %1$d vrstice."
+msgstr[3] "Izbrisanih je %1$d vrstic."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Vstavljena je %1$d vrstica."
+msgstr[1] "Vstavljeni sta %1$d vrstici."
+msgstr[2] "Vstavljene so %1$d vrstice."
+msgstr[3] "Vstavljenih je %1$d vrstic."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Ne morem shraniti nedavne tabele"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Nedavne tabele"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Ni nobenih nedavnih tabel"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je na voljo na tem strežniku MySQL."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogočeno za ta strežnik MySQL."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neveljavna zbirka podatkov"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neveljavno ime tabele"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s je preimenovana v %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Za temo %s ni bila najdena veljavna pot slik!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Predogled ni na voljo."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "uporabi"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Privzeta tema %s ni bila najdena!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s ni bila najdena!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Pot teme ni bila najdena za temo %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Motiv"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Povezava ni mogoča: neveljavne nastavitve."
@@ -1695,8 +1910,8 @@ msgstr "Dobrodošli v %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Najverjetneje niste ustvarili konfiguracijske datoteke. Morda želite "
"uporabiti %1$snastavitveni skript%2$s, da jo ustvarite."
@@ -1801,14 +2016,6 @@ msgstr "Napaka PBMS"
msgid "PBMS connection failed:"
msgstr "Povezava s PBMS je spodletela:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Napaka"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "Pridobivanje informacij BLOB PBMS je spodletelo:"
@@ -1861,11 +2068,6 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podatki"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indeksi"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2148,9 +2350,77 @@ msgstr "Nobene datoteke ni za naložiti"
msgid "Execute"
msgstr "Izvedi"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Velikost pisave"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Oboje"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Nikjer"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Levo"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Desno"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Odprto"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Zaprto"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "podatki"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktura in podatki"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "popolne poizvedbe insert"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "razširjene poizvedbe insert"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "oboje zgoraj"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "nič od zgoraj"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2807,12 +3077,6 @@ msgstr "Nastavi mape za uvoz in izvoz ter možnosti stiskanja"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Zbirke podatkov"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Možnosti prikaza zbirk podatkov"
@@ -4431,78 +4695,6 @@ msgstr "Počisti geslo krmilnega uporabnika phpMyAdmin med uporabo pmadb"
msgid "Incorrect IP address: %s"
msgstr "Napačen IP-naslov: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Oboje"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Nikjer"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Levo"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Desno"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Odprto"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Zaprto"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "podatki"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktura in podatki"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hitro - prikaži kar najmanj možnosti za konfiguriranje"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Po meri - prikaži vse mogoče možnosti za konfiguriranje"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Po meri - kot zgoraj, vendar brez izbire hitro/po meri"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "popolne poizvedbe insert"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "razširjene poizvedbe insert"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "oboje zgoraj"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "nič od zgoraj"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4568,25 +4760,6 @@ msgstr "Izklopi ga"
msgid "Add an event"
msgstr "Dodaj nov dogodek"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
-"spodletela."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Strežnik se ne odziva"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Podrobnosti ..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4654,9 +4827,9 @@ msgstr "Dolžina/Vrednosti"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4703,11 +4876,6 @@ msgstr "Vrsta varnosti"
msgid "SQL data access"
msgstr "Dostop do podatkov SQL"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Pripomba"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Parametri rutine"
@@ -4768,6 +4936,25 @@ msgstr ""
"Morda je približno. Glej [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Povezava za controluserja, kot je določena v vaši konfiguraciji, je "
+"spodletela."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Strežnik se ne odziva"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ali pa lokalna vtičnica strežnika MySQL ni pravilno konfigurirana)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Podrobnosti ..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4907,8 +5094,8 @@ msgstr ", @TABLE@ bo postalo ime tabele"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Vrednost je prevedena z uporabo %1$sstrftime%2$s, tako da lahko uporabljate "
"nize za zapis časa. Dodatno bo prišlo še do naslednjih pretvorb: %3$s. "
@@ -5681,8 +5868,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"Dokumentacijo in nadaljnje informacije o PBXT lahko najdete na %sDomači "
"strani PrimeBase XT%s."
@@ -5991,46 +6178,6 @@ msgstr "Pogledi"
msgid "Export contents"
msgstr "Izvozi vsebine"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "Naložena datotek presega napotek upload_max_filesize v php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Naložena datotek presega napotek MAX_FILE_SIZE, ki je bil določen v obrazcu "
-"HTML."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Naložena datoteka je bila naložena samo delno."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Manjka začasna mapa."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Pisanje datoteke na disk je spodletelo."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Nalaganje datoteke je ustavila razširitev."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Neznana napaka pri nalaganju datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Napaka pri premikanju naložene datoteke, glej [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6048,6 +6195,43 @@ msgstr "Rezultat SQL"
msgid "Generated by"
msgstr "Ustvaril"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Oglejte si vsebino strukture s klikom na njeno ime"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo "
+"\"Možnosti\""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Pojdi v zbirko podatkov"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "nastavitve"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Pojdi v tabelo"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Pojdi na pogled"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6114,43 +6298,6 @@ msgstr "Imena stolpcev"
msgid "This plugin does not support compressed imports!"
msgstr "Ta vtičnik ne podpira stisnjenih uvozov!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Naslednje strukture so bile ali ustvarjene ali spremenjene: Tukaj lahko:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Oglejte si vsebino strukture s klikom na njeno ime"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Spremenite katero koli njeno nastavitev s klikom na pripadajočo povezavo "
-"\"Možnosti\""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Uredite njeno strukturo s sledenjem povezavi \"Struktura\""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Pojdi v zbirko podatkov"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "nastavitve"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Pojdi v tabelo"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Pojdi na pogled"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6176,42 +6323,6 @@ msgstr ""
"Določena datoteka XML je ali skažena ali nepopolna. Prosimo, odpravite "
"težave in poskusite znova."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ni definiranega indeksa!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Edinstven"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Stisnjeno"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je zavržen"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Indeks %s je zavržen"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Kaže, da sta indeksa %1$s in %2$s enaka, zato se enega od njiju morda lahko "
-"odstrani."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6222,33 +6333,6 @@ msgstr "Nobeno"
msgid "Convert to Kana"
msgstr "Pretvori v kano"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "Spremenjena je %1$d vrstica."
-msgstr[1] "Spremenjeni sta %1$d vrstici."
-msgstr[2] "Spremenjene so %1$d vrstice."
-msgstr[3] "Spremenjenih je %1$d vrstic."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Izbrisana je %1$d vrstica."
-msgstr[1] "Izbrisani sta %1$d vrstici."
-msgstr[2] "Izbrisane so %1$d vrstice."
-msgstr[3] "Izbrisanih je %1$d vrstic."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Vstavljena je %1$d vrstica."
-msgstr[1] "Vstavljeni sta %1$d vrstici."
-msgstr[2] "Vstavljene so %1$d vrstice."
-msgstr[3] "Vstavljenih je %1$d vrstic."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Od"
@@ -6487,18 +6571,6 @@ msgstr "Osveži okvir navigacije"
msgid "This format has no options"
msgstr "Za to obliko ni možnosti"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Ne morem shraniti nedavne tabele"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Nedavne tabele"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Ni nobenih nedavnih tabel"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ni v redu"
@@ -6881,6 +6953,61 @@ msgstr "Razlika"
msgid "Target database"
msgstr "Ciljna zbirka podatkov"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Počisti"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Stolpci"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Označi to poizvedbo SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zamenjaj obstoječ zaznamek z istim imenom"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepiši te poizvedbe od zunaj"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Ločilo"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Ponovno pokaži poizvedbo v tem oknu "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Samo pogled"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Mesto datoteke z besedilom"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "imenik za nalaganje datotek"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6943,61 +7070,6 @@ msgstr "Neveljavni identifikator"
msgid "Unknown Punctuation String"
msgstr "Neznan niz ločil"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvedi poizvedbo/poizvedbe SQL na strežniku %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvedi poizvedbo/poizvedbe SQL na podatkovni zbirki %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Počisti"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Stolpci"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Označi to poizvedbo SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dovoli dostop do zaznamka vsem uporabnikom"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zamenjaj obstoječ zaznamek z istim imenom"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepiši te poizvedbe od zunaj"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Ločilo"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Ponovno pokaži poizvedbo v tem oknu "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Samo pogled"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Mesto datoteke z besedilom"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "imenik za nalaganje datotek"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7007,49 +7079,6 @@ msgstr ""
"Ne morem inicializirati preverjevalnika SQL. Prosimo, preverite, če so "
"nameščene vse razširitve PHP, kot je navedeno v %sdokumenaciji%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Za ta skladiščni pogon ni na voljo nobenih podrobnejših informacij o stanju."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je na voljo na tem strežniku MySQL."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogočeno za ta strežnik MySQL."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ta strežnik MySQL ne podpira skladiščnega pogona %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neveljavna zbirka podatkov"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neveljavno ime tabele"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Napaka pri preimenovanju tabele %1$s v %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s je preimenovana v %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Ne morem shraniti nastavitev uporabniškega vmesnika tabel"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela je prazna!"
@@ -7170,38 +7199,6 @@ msgstr "Definicija PARTITION"
msgid "+ Add a value"
msgstr "+ Dodaj novo vrednost"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Za temo %s ni bila najdena veljavna pot slik!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Predogled ni na voljo."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "uporabi"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Privzeta tema %s ni bila najdena!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s ni bila najdena!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Pot teme ni bila najdena za temo %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Motiv"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8244,8 +8241,8 @@ msgstr "Izbriši zbirke podatkov, ki imajo enako ime kot uporabniki."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Obvestilo: phpMyAdmin dobi podatke o uporabnikovih privilegijih iz tabel "
"privilegijev MySQL. Vsebina teh tabel se lahko razlikuje od privilegijev, ki "
diff --git a/po/sq.po b/po/sq.po
index 6a858e86de..6e35d1f11b 100644
--- a/po/sq.po
+++ b/po/sq.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-21 14:51+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: albanian \n"
+"Language: sq\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sq\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Kërko"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Kërko"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Zbato"
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "U krijua baza e të dhënave %1$s."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komenti për databazën: "
@@ -130,9 +130,9 @@ msgstr "Komenti për databazën: "
msgid "Table comments"
msgstr "Komentet e tabelës"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Komentet e tabelës"
msgid "Column"
msgstr "Emrat e kollonave"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Emrat e kollonave"
msgid "Type"
msgstr "Lloji"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Lidhje me"
msgid "Comments"
msgstr "Komente"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Komente"
msgid "No"
msgstr " Jo "
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,82 +261,82 @@ msgstr "Asnjë zgjedhje"
msgid "The database name is empty!"
msgstr "Mungon emri i databazës!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Databazës %s i është ndryshuar emri në %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Databaza %s është kopjuar tek %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ndysho emrin e databazës në"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komanda"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Ndysho emrin e databazës në"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databaza %s u eleminua."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Asnjë databazë"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopjo databazën në"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Vetëm struktura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura dhe të dhënat"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Vetëm të dhënat"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE para se të kopjohet"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Shto %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Shto vlerë AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Shto kushte"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kalo tek databaza e kopjuar"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -346,7 +345,7 @@ msgstr "Kalo tek databaza e kopjuar"
msgid "Collation"
msgstr "Collation"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -358,7 +357,7 @@ msgstr ""
"Karakteristikat shtesë janë çaktivizuar për sa i takon funksionimit me "
"tabelat e lidhura. Për të kuptuar përse, klikoni %skëtu%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -511,102 +510,102 @@ msgstr "Kërkesë SQL tek databaza %s:"
msgid "Submit Query"
msgstr "Dërgo Query"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Query SQL u zbatua me sukses"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL ka kthyer një të përbashkët boshe (p.sh. zero rreshta)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Mesazh nga MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Proceset"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Nuk gjenden tabela në databazë."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabela %s u eleminua"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabela %s u eleminua"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Versioni i MySQL"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -743,8 +742,8 @@ msgstr "Gjurmimi nuk është aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -812,8 +811,8 @@ msgstr "Shfaq për printim"
msgid "Empty"
msgstr "Zbraz"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -892,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Gjendja"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -992,8 +991,8 @@ msgstr "Dump u ruajt tek file %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1173,11 +1172,11 @@ msgstr "Heq përdoruesit e zgjedhur"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ndrysho"
@@ -1801,6 +1800,214 @@ msgstr "në përdorim"
msgid "Second"
msgstr "në sekondë"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Asnjë tregues i përcaktuar!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Tregues"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "I vetëm"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komente"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Kyçi primar u eleminua"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Treguesi %s u eleminua"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databazat"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Gabim"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Nuk ka rreshta të zgjedhur"
+msgstr[1] "Nuk ka rreshta të zgjedhur"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Nuk ka rreshta të zgjedhur"
+msgstr[1] "Nuk ka rreshta të zgjedhur"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Asnjë tabelë"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabela %s u riemërtua %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "merre"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "E pamundur lidhja: rregullime të pavlefshme."
@@ -1814,8 +2021,8 @@ msgstr "Mirësevini tek %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1920,14 +2127,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Vendosja e lidhjes MySQL"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Gabim"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1980,11 +2179,6 @@ msgstr "Tabela"
msgid "Data"
msgstr "Të dhëna"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Tregues"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2267,8 +2461,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Thonjëza të pambyllura"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura dhe të dhënat"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Të shtuarat komplet"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Të shtuara të zgjeruara"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2939,12 +3210,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databazat"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4475,87 +4740,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Thonjëza të pambyllura"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura dhe të dhënat"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Të shtuarat komplet"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Të shtuara të zgjeruara"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4623,23 +4807,6 @@ msgstr ""
msgid "Add an event"
msgstr "Shto një përdorues të ri"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Serveri nuk përgjigjet"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4712,9 +4879,9 @@ msgstr "Gjatësia/Set*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4772,12 +4939,6 @@ msgstr "Lloji i query"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komente"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4837,6 +4998,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Serveri nuk përgjigjet"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4998,8 +5176,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5729,8 +5907,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6046,42 +6224,6 @@ msgstr "Paraqitje"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6099,6 +6241,41 @@ msgstr "Rezultati SQL"
msgid "Generated by"
msgstr "Gjeneruar nga"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Asnjë databazë"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6160,41 +6337,6 @@ msgstr "Emrat e kollonave"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Asnjë databazë"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6217,40 +6359,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Asnjë tregues i përcaktuar!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "I vetëm"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Kyçi primar u eleminua"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Treguesi %s u eleminua"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6263,29 +6371,6 @@ msgstr "Asnjë lloj"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Nuk ka rreshta të zgjedhur"
-msgstr[1] "Nuk ka rreshta të zgjedhur"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Nuk ka rreshta të zgjedhur"
-msgstr[1] "Nuk ka rreshta të zgjedhur"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6529,19 +6614,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Ky format nuk ka opcione"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Asnjë tabelë"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "jo OK"
@@ -6934,6 +7006,64 @@ msgstr ""
msgid "Target database"
msgstr "Kërko në databazë"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Zbato query SQL tek databaza %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Zbato query SQL tek databaza %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendari"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Emrat e kollonave"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Shtoja të preferuarve këtë query SQL"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Mos e mbishkruaj këtë query nga jashtë dritares"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Tregoje përsëri këtë query"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Shfaq vetëm"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Pozicioni i file"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "directory e upload të server-it web"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6999,64 +7129,6 @@ msgstr "Identifikues i pavlefshëm"
msgid "Unknown Punctuation String"
msgstr "Stringë Punctuation e panjohur"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Zbato query SQL tek databaza %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Zbato query SQL tek databaza %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendari"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Emrat e kollonave"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Shtoja të preferuarve këtë query SQL"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Lejo që çdo përdorues të ketë hyrje në këtë libërshënues"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Mos e mbishkruaj këtë query nga jashtë dritares"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Tregoje përsëri këtë query"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Shfaq vetëm"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Pozicioni i file"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "directory e upload të server-it web"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7066,48 +7138,6 @@ msgstr ""
"Miratuesi SQL nuk arrin të niset. Ju lutem kontrolloni instalimin e "
"prapashtesave të duhura php ashtu si përshkruhet tek %sdokumentimi%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabela %s u riemërtua %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7237,38 +7267,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Shto një përdorues të ri"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "merre"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8365,8 +8363,8 @@ msgstr "Elemino databazat që kanë emër të njëjtë me përdoruesit."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Shënim: phpMyAdmin lexon të drejtat e përdoruesve direkt nga tabela e "
"privilegjeve të MySQL. Përmbajtja e kësaj tabele mund të ndryshojë prej të "
@@ -10653,8 +10651,8 @@ msgstr "Riemërto tabelën në"
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar %"
-#~ "s queries."
+#~ "Statistikat e Query: Që nga nisja e tij, serverit i janë dërguar "
+#~ "%s queries."
#, fuzzy
#~| msgid "The privileges were reloaded successfully."
diff --git a/po/sr.po b/po/sr.po
index 63e7131bef..53b77927c7 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-04-06 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: serbian_cyrillic \n"
+"Language: sr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sr\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Претраживање"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Претраживање"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Крени"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "База %s је креирана."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар базе:"
@@ -131,9 +131,9 @@ msgstr "Коментар базе:"
msgid "Table comments"
msgstr "Коментари табеле"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -142,12 +142,12 @@ msgstr "Коментари табеле"
msgid "Column"
msgstr "Колона"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -157,9 +157,9 @@ msgstr "Колона"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -197,13 +197,12 @@ msgstr "Везе ка"
msgid "Comments"
msgstr "Коментари"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -214,17 +213,17 @@ msgstr "Коментари"
msgid "No"
msgstr "Не"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -261,79 +260,79 @@ msgstr "ништа"
msgid "The database name is empty!"
msgstr "Име базе није задато!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "База %s је преименована у %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "База %s је прекопирана у %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Преименуј базу у"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Наредба"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Уклони базу"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "База %s је одбачена."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Одбаци базу (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копирај базу у"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Само структура"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структура и подаци"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Само подаци"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE пре копирања"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Додај %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Додај AUTO_INCREMENT вредност"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Додај ограничења"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Пребаци се на копирану базу"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -342,7 +341,7 @@ msgstr "Пребаци се на копирану базу"
msgid "Collation"
msgstr "Сортирање"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -354,7 +353,7 @@ msgstr ""
"Додатне могућности за рад са повезаним табелама су искључене. Да бисте "
"сазнали зашто, кликните %sовде%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Уреди или извези релациону схему"
@@ -506,14 +505,14 @@ msgstr "SQL упит на бази %s:"
msgid "Submit Query"
msgstr "Изврши SQL упит"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL упит је успешно извршен"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -521,93 +520,93 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Дозвољава извршавање сачуваних рутина."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL је вратио празан резултат (нула редова)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL рече: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Процеси"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Табеле нису пронађене у бази."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Увоз датотека"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Неисправан индекс сервера: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Табела %s је одбачена"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Табела %s је одбачена"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Направи релацију"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Routines"
msgid "Edit routine"
msgstr "Рутине"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -746,8 +745,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -814,8 +813,8 @@ msgstr "За штампу"
msgid "Empty"
msgstr "Испразни"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -896,9 +895,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -997,11 +996,11 @@ msgstr "Садржај базе је сачуван у датотеку %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте %"
-"sдокументацију%s за начине превазилажења овог ограничења."
+"Вероватно сте покушали да увезете превелику датотеку. Молимо погледајте "
+"%sдокументацију%s за начине превазилажења овог ограничења."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1190,11 +1189,11 @@ msgstr "Уклони изабране кориснике"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Промени"
@@ -1820,6 +1819,221 @@ msgstr "се користи"
msgid "Second"
msgstr "у секунди"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Величина фонта"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Послата датотека превазилази вредност директиве upload_max_filesize у php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
+"наведена у HTML форми."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Послата датотека је само делимично примљена."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Недостаје привремени директоријум."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Неуспело уписивање датотеке на диск."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Пријем датотеке заустављен због екстензије."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Непозната грешка при слању датотеке."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Кључ није дефинисан!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Кључеви"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Јединствени"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кардиналност"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Коментари"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Примарни кључ је обрисан"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Кључ %s је обрисан"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Базе"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Грешка"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Нема одабраних редова"
+msgstr[1] "Нема одабраних редова"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Нема одабраних редова"
+msgstr[1] "Нема одабраних редова"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Нема табела"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Провери табелу"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Нема детаљнијих информација о статусу за овај погон складиштења."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s је доступан на овом MySQL серверу."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s је онемогућен на овом MySQL серверу."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Овај MySQL сервер не подржава %s погон складиштења."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Неисправна база података"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Неисправан назив табеле"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Грешка при преименовању табеле %1$s у %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Табели %s промењено име у %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Нема исправне путање до слика за тему %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Преглед не постоји."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "преузми"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Није пронађена подразумевана тема %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Није пронађена тема %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Није пронађена путања до теме за тему %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Не могу да се повежем: неисправна подешавања."
@@ -1833,8 +2047,8 @@ msgstr "Добродошли на %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Вероватан разлог за ово је да нисте направили конфигурациону датотеку. "
"Можете користити %1$sскрипт за инсталацију%2$s да бисте је направили."
@@ -1941,14 +2155,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Сортирање за MySQL везу"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Грешка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2001,11 +2207,6 @@ msgstr "Табеле"
msgid "Data"
msgstr "Подаци"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Кључеви"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2294,9 +2495,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Величина фонта"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Наводник није затворен"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Структура"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Структура и подаци"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Комплетан INSERT (са именима поља)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Проширени INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2970,12 +3248,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Базе"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4530,87 +4802,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Наводник није затворен"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Структура"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Структура и подаци"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Комплетан INSERT (са именима поља)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Проширени INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4678,25 +4869,6 @@ msgstr ""
msgid "Add an event"
msgstr "Додај новог корисника"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
-"није успела."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер не одговара"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4769,9 +4941,9 @@ msgstr "Дужина/Вредност*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4830,12 +5002,6 @@ msgstr "Врста упита"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Коментари"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4899,6 +5065,25 @@ msgid ""
"3.11[/a]"
msgstr "Може бити приближно. Видите FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Конекција за controluser-а, онако како је дефинисана у вашој конфигурацији, "
+"није успела."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер не одговара"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(или прикључак локалног MySQL сервера није исправно подешен)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5068,8 +5253,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ова вредност се тумачи коришћењем %1$sstrftime%2$s, тако да можете да "
"користите стрингове за форматирање времена. Такође ће се десити и следеће "
@@ -5836,8 +6021,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6155,46 +6340,6 @@ msgstr "Поглед"
msgid "Export contents"
msgstr "Тип извоза"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Послата датотека превазилази вредност директиве upload_max_filesize у php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Послата датотека превазилази вредност директиве MAX_FILE_SIZE која је "
-"наведена у HTML форми."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Послата датотека је само делимично примљена."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Недостаје привремени директоријум."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Неуспело уписивање датотеке на диск."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Пријем датотеке заустављен због екстензије."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Непозната грешка при слању датотеке."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Грешка у премештању примљене датотеке, погледајте FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6212,6 +6357,42 @@ msgstr "SQL резултат"
msgid "Generated by"
msgstr "Генерисао"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "База не постоји"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "База не постоји"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6274,42 +6455,6 @@ msgstr "Имена колона"
msgid "This plugin does not support compressed imports!"
msgstr "Овај додатак не подржава компресоване увозе!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "База не постоји"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "База не постоји"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6334,40 +6479,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Кључ није дефинисан!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Јединствени"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кардиналност"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Примарни кључ је обрисан"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Кључ %s је обрисан"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6380,29 +6491,6 @@ msgstr "нема"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Нема одабраних редова"
-msgstr[1] "Нема одабраних редова"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Нема одабраних редова"
-msgstr[1] "Нема одабраних редова"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6647,22 +6735,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Не постоје опције за овај формат"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Не могу да учитам подразумевану конфигурацију из: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Нема табела"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Провери табелу"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "није у реду"
@@ -7055,6 +7127,64 @@ msgstr ""
msgid "Target database"
msgstr "Претраживање базе"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Изврши SQL упит(е) на серверу %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Изврши SQL упит(е) на бази %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Календар"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Имена колона"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Запамти SQL-упит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Замени постојеће запамћене упите истог имена"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не преписуј овај упит изван прозора"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Граничник"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Прикажи поново овај упит"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Види само"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Локација текстуалне датотеке"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "директоријум за слање веб сервера "
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7117,64 +7247,6 @@ msgstr "Неисправан иГ¤ентификатор"
msgid "Unknown Punctuation String"
msgstr "Непознат стринг интерпункције"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Изврши SQL упит(е) на серверу %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Изврши SQL упит(е) на бази %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Календар"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Имена колона"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Запамти SQL-упит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Дозволи сваком кориснику да приступа овом упамћеном упиту"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Замени постојеће запамћене упите истог имена"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не преписуј овај упит изван прозора"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Граничник"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Прикажи поново овај упит"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Види само"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Локација текстуалне датотеке"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "директоријум за слање веб сервера "
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7184,48 +7256,6 @@ msgstr ""
"SQL валидатор није могао да буде покренут. Проверите да ли су инсталиране "
"неопходне PHP екстензије описане у %sдокументацији%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Нема детаљнијих информација о статусу за овај погон складиштења."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s је доступан на овом MySQL серверу."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s је онемогућен на овом MySQL серверу."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Овај MySQL сервер не подржава %s погон складиштења."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Неисправна база података"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Неисправан назив табеле"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Грешка при преименовању табеле %1$s у %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Табели %s промењено име у %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Табела је изгледа празна!"
@@ -7355,38 +7385,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Додај новог корисника"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Нема исправне путање до слика за тему %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Преглед не постоји."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "преузми"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Није пронађена подразумевана тема %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Није пронађена тема %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Није пронађена путања до теме за тему %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8502,8 +8500,8 @@ msgstr "Одбаци базе које се зову исто као корис
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Напомена: phpMyAdmin узима привилегије корисника директно из MySQL табела "
"привилегија. Садржај ове табеле може се разликовати од привилегија које "
diff --git a/po/sr@latin.po b/po/sr@latin.po
index 640428b6db..9e5f13445b 100644
--- a/po/sr@latin.po
+++ b/po/sr@latin.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-12-02 14:49+0200\n"
"Last-Translator: Sasa Kostic \n"
"Language-Team: serbian_latin \n"
+"Language: sr@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sr@latin\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Pretraživanje"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Pretraživanje"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kreni"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Baza %1$s je kreirana."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Komentar baze:"
@@ -133,9 +133,9 @@ msgstr "Komentar baze:"
msgid "Table comments"
msgstr "Komentari tabele"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Komentari tabele"
msgid "Column"
msgstr "Kolona"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Kolona"
msgid "Type"
msgstr "Tip"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Veze ka"
msgid "Comments"
msgstr "Komentari"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Komentari"
msgid "No"
msgstr "Ne"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "ništa"
msgid "The database name is empty!"
msgstr "Ime baze nije zadato!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Baza %s je preimenovana u %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Baza %s je prekopirana u %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Preimenuj bazu u"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Naredba"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Ukloni bazu"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Baza %s je odbačena."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Ukloni bazu i njen sadržaj"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiraj bazu u"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Samo struktura"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktura i podaci"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Samo podaci"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE pre kopiranja"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Dodaj %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Dodaj AUTO_INCREMENT vrednost"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Dodaj ograničenja"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Prebaci se na kopiranu bazu"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Prebaci se na kopiranu bazu"
msgid "Collation"
msgstr "Sortiranje"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -356,7 +355,7 @@ msgstr ""
"Dodatne mogućnosti za rad sa povezanim tabelama su isključene. Da biste "
"saznali zašto, kliknite %sovde%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Uredi ili izvezi relacionu shemu"
@@ -503,14 +502,14 @@ msgstr "SQL upit na bazi %s:"
msgid "Submit Query"
msgstr "Izvrši SQL upit"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Vaš SQL upit je uspešno izvršen"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -518,93 +517,93 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Dozvoljava izvršavanje sačuvanih rutina."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL je vratio prazan rezultat (nula redova)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL reče: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Procesi"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Tabele nisu pronađene u bazi."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Uvoz datoteka"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Neispravan indeks servera: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Tabela %s je odbačena"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "Tabela %s je odbačena"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Napravi relaciju"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Routines"
msgid "Edit routine"
msgstr "Rutine"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -740,8 +739,8 @@ msgstr "Praćenje nije aktivno."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -808,8 +807,8 @@ msgstr "Za štampu"
msgid "Empty"
msgstr "Isprazni"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -890,9 +889,9 @@ msgstr ""
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -991,11 +990,11 @@ msgstr "Sadržaj baze je sačuvan u datoteku %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte %"
-"sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
+"Verovatno ste pokušali da uvezete preveliku datoteku. Molimo pogledajte "
+"%sdokumentaciju%s za načine prevazilaženja ovog ograničenja."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1184,11 +1183,11 @@ msgstr "Ukloni izabrane korisnike"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Promeni"
@@ -1814,6 +1813,221 @@ msgstr "se koristi"
msgid "Second"
msgstr "u sekundi"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Veličina fonta"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
+"ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
+"navedena u HTML formi."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Poslata datoteka je samo delimično primljena."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Nedostaje privremeni direktorijum."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Neuspelo upisivanje datoteke na disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Nepoznata greška pri slanju datoteke."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Ključ nije definisan!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Ključevi"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Jedinstveni"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalnost"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Komentari"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Primarni ključ je obrisan"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Ključ %s je obrisan"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Baze"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Greška"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Nema odabranih redova"
+msgstr[1] "Nema odabranih redova"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Nema odabranih redova"
+msgstr[1] "Nema odabranih redova"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Nema tabela"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Proveri tabelu"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s je dostupan na ovom MySQL serveru."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s je onemogućen na ovom MySQL serveru."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Neispravna baza podataka"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Neispravan naziv tabele"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabeli %s promenjeno ime u %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Nema ispravne putanje do slika za temu %s!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Pregled ne postoji."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "preuzmi"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Nije pronađena podrazumevana tema %s!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Nije pronađena tema %s!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Nije pronađena putanja do teme za temu %s!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ne mogu da se povežem: neispravna podešavanja."
@@ -1827,8 +2041,8 @@ msgstr "Dobrodošli na %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Verovatan razlog za ovo je da niste napravili konfiguracionu datoteku. "
"Možete koristiti %1$sskript za instalaciju%2$s da biste je napravili."
@@ -1935,14 +2149,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Sortiranje za MySQL vezu"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Greška"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1995,11 +2201,6 @@ msgstr "Tabele"
msgid "Data"
msgstr "Podaci"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Ključevi"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2288,9 +2489,86 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Veličina fonta"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Navodnik nije zatvoren"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Struktura"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Struktura i podaci"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Kompletan INSERT (sa imenima polja)"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Prošireni INSERT"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2965,12 +3243,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Baze"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4523,87 +4795,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Navodnik nije zatvoren"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Struktura"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Struktura i podaci"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Kompletan INSERT (sa imenima polja)"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Prošireni INSERT"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4671,25 +4862,6 @@ msgstr ""
msgid "Add an event"
msgstr "Dodaj novog korisnika"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
-"nije uspela."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server ne odgovara"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4762,9 +4934,9 @@ msgstr "Dužina/Vrednost*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4821,12 +4993,6 @@ msgstr "Vrsta upita"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Komentari"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4890,6 +5056,25 @@ msgid ""
"3.11[/a]"
msgstr "Može biti približno. Vidite FAQ 3.11"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Konekcija za controluser-a, onako kako je definisana u vašoj konfiguraciji, "
+"nije uspela."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server ne odgovara"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ili priključak lokalnog MySQL servera nije ispravno podešen)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5059,8 +5244,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Ova vrednost se tumači korišćenjem %1$sstrftime%2$s, tako da možete da "
"koristite stringove za formatiranje vremena. Takođe će se desiti i sledeće "
@@ -5827,8 +6012,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6142,46 +6327,6 @@ msgstr "Pogled"
msgid "Export contents"
msgstr "Tip izvoza"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Poslata datoteka prevazilazi vrednost direktive upload_max_filesize u php."
-"ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Poslata datoteka prevazilazi vrednost direktive MAX_FILE_SIZE koja je "
-"navedena u HTML formi."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Poslata datoteka je samo delimično primljena."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Nedostaje privremeni direktorijum."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Neuspelo upisivanje datoteke na disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Prijem datoteke zaustavljen zbog ekstenzije."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Nepoznata greška pri slanju datoteke."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Greška u premeštanju primljene datoteke, pogledajte FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6199,6 +6344,42 @@ msgstr "SQL rezultat"
msgid "Generated by"
msgstr "Generisao"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Baza ne postoji"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6261,42 +6442,6 @@ msgstr "Imena kolona"
msgid "This plugin does not support compressed imports!"
msgstr "Ovaj dodatak ne podržava kompresovane uvoze!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Baza ne postoji"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6321,40 +6466,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Ključ nije definisan!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Jedinstveni"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalnost"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Primarni ključ je obrisan"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Ključ %s je obrisan"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6367,29 +6478,6 @@ msgstr "nema"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Nema odabranih redova"
-msgstr[1] "Nema odabranih redova"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Nema odabranih redova"
-msgstr[1] "Nema odabranih redova"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6632,22 +6720,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Ne postoje opcije za ovaj format"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Ne mogu da učitam podrazumevanu konfiguraciju iz: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Nema tabela"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Proveri tabelu"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "nije u redu"
@@ -7040,6 +7112,64 @@ msgstr ""
msgid "Target database"
msgstr "Pretraživanje baze"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Izvrši SQL upit(e) na serveru %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Izvrši SQL upit(e) na bazi %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Kalendar"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Imena kolona"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Zapamti SQL-upit"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Zameni postojeće zapamćene upite istog imena"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Ne prepisuj ovaj upit izvan prozora"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Graničnik"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Prikaži ponovo ovaj upit"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Vidi samo"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Lokacija tekstualne datoteke"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "direktorijum za slanje veb servera "
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7102,64 +7232,6 @@ msgstr "Neispravan iG¤entifikator"
msgid "Unknown Punctuation String"
msgstr "Nepoznat string interpunkcije"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Izvrši SQL upit(e) na serveru %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Izvrši SQL upit(e) na bazi %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Kalendar"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Imena kolona"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Zapamti SQL-upit"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Dozvoli svakom korisniku da pristupa ovom upamćenom upitu"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Zameni postojeće zapamćene upite istog imena"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Ne prepisuj ovaj upit izvan prozora"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Graničnik"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Prikaži ponovo ovaj upit"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Vidi samo"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Lokacija tekstualne datoteke"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "direktorijum za slanje veb servera "
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7169,48 +7241,6 @@ msgstr ""
"SQL validator nije mogao da bude pokrenut. Proverite da li su instalirane "
"neophodne PHP ekstenzije opisane u %sdokumentaciji%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Nema detaljnijih informacija o statusu za ovaj pogon skladištenja."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s je dostupan na ovom MySQL serveru."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s je onemogućen na ovom MySQL serveru."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ovaj MySQL server ne podržava %s pogon skladištenja."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Neispravna baza podataka"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Neispravan naziv tabele"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Greška pri preimenovanju tabele %1$s u %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabeli %s promenjeno ime u %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabela je izgleda prazna!"
@@ -7340,38 +7370,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Dodaj novog korisnika"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Nema ispravne putanje do slika za temu %s!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Pregled ne postoji."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "preuzmi"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Nije pronađena podrazumevana tema %s!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Nije pronađena tema %s!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Nije pronađena putanja do teme za temu %s!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8489,8 +8487,8 @@ msgstr "Odbaci baze koje se zovu isto kao korisnici."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Napomena: phpMyAdmin uzima privilegije korisnika direktno iz MySQL tabela "
"privilegija. Sadržaj ove tabele može se razlikovati od privilegija koje "
diff --git a/po/sv.po b/po/sv.po
index a123b7933c..63321b1554 100644
--- a/po/sv.po
+++ b/po/sv.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-16 00:11+0200\n"
-"Last-Translator: \n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-25 01:19+0200\n"
+"Last-Translator: \n"
"Language-Team: swedish \n"
+"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Sök"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Sök"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Kör"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Databas %1$s har skapats."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Databaskommentar: "
@@ -132,9 +132,9 @@ msgstr "Databaskommentar: "
msgid "Table comments"
msgstr "Tabellkommentarer"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tabellkommentarer"
msgid "Column"
msgstr "Kolumn"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Kolumn"
msgid "Type"
msgstr "Typ"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Länkar till"
msgid "Comments"
msgstr "Kommentarer"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Kommentarer"
msgid "No"
msgstr "Nej"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Avmarkera alla"
msgid "The database name is empty!"
msgstr "Databasens namn är tomt!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Databas %s har döpts om till %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Databas %s har kopierats till %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Byt namn på databasen till"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Kommando"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Radera databasen"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Databasen %s har tagits bort."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Tag bort databasen (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Kopiera databas till"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Enbart struktur"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Struktur och data"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Enbart data"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE före kopiering"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Lägg till %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Lägg till AUTO_INCREMENT-värde"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Lägg till restriktioner"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Byt till kopierad databas"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Byt till kopierad databas"
msgid "Collation"
msgstr "Kollationering"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -351,7 +350,7 @@ msgid ""
msgstr ""
"Konfigurationsschemat för phpMyAdmin har avaktiverats. %sVisa orsaken%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Editera eller exportera relationsschema"
@@ -497,115 +496,107 @@ msgstr "SQL-fråga i databas %s:"
msgid "Submit Query"
msgstr "Kör fråga"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Din SQL-fråga utfördes korrekt"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "%d rad berörs av det sista uttrycket inom proceduren"
+msgstr[1] "%d rader berörs av det sista uttrycket inom proceduren"
-#: db_routines.php:165
-#, fuzzy, php-format
-#| msgid "Allows executing stored routines."
+#: db_routines.php:167
+#, php-format
msgid "Execution results of routine %s"
-msgstr "Tillåter utförande av lagrade rutiner."
+msgstr "Exekveringsresultat av rutin %s"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL returnerade ett tomt resultat (dvs inga rader)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
-#| msgid "The following queries have been executed:"
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "Följande frågor har verkställts:"
+msgstr "Följande fråga har fallerat: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL sa: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
-#, fuzzy
-#| msgid "Error in Processing Request"
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
-msgstr "Fel i processbegäran"
+msgstr "Fel i utförandebegäran"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
msgid "No routine with name %1$s found in database %2$s"
-msgstr "Inga tabeller finns i databasen."
+msgstr "Ingen rutin med namnet %1$s finns i databasen %2$s"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
-msgstr ""
+msgstr "Utför rutin"
-#: db_routines.php:259 db_routines.php:263
-#, fuzzy, php-format
-#| msgid "Export defaults"
+#: db_routines.php:261 db_routines.php:265
+#, php-format
msgid "Export of routine %s"
-msgstr "Exportera standardvärden"
+msgstr "Exportera rutin %s"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
-#, fuzzy, php-format
-#| msgid "Invalid server index: %s"
+#: db_routines.php:290 libraries/db_routines.lib.php:960
+#, php-format
msgid "Invalid routine type: \"%s\""
-msgstr "Ogiltigt serverindex: %s"
+msgstr "Ogiltig rutintyp: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
-msgstr ""
+msgstr "Tyvärr, vi lyckades inte återställa den slängda rutinen."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
-msgstr ""
+msgstr "Den säkerhetskopierade frågan var:"
-#: db_routines.php:314
-#, fuzzy, php-format
-#| msgid "Column %s has been dropped"
+#: db_routines.php:316
+#, php-format
msgid "Routine %1$s has been modified."
-msgstr "Kolumnen %s har tagits bort"
+msgstr "Rutinen %1$s har modifierats."
-#: db_routines.php:327
-#, fuzzy, php-format
-#| msgid "Table %1$s has been created."
+#: db_routines.php:329
+#, php-format
msgid "Routine %1$s has been created."
-msgstr "Tabell %1$s har skapats."
+msgstr "Rutinen %1$s har skapats."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
+" Ett eller flera fel har inträffat under hanteringen av din begäran: "
-#: db_routines.php:379
-#, fuzzy
-#| msgid "Create relation"
+#: db_routines.php:381
msgid "Create routine"
-msgstr "Skapa relation"
+msgstr "Skapa rutin"
-#: db_routines.php:383
-#, fuzzy
-#| msgid "Edit mode"
+#: db_routines.php:385
msgid "Edit routine"
-msgstr "Redigeringsläge"
+msgstr "Redigera rutin"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
"b> Please use the improved 'mysqli' extension to avoid any problems."
msgstr ""
+"Du använder PHP: s utfasade \"mysql\" utvidgning, vilken inte klarar av att "
+"hantera flera frågor. Genomförandet av vissa lagrade rutiner kan "
+"misslyckas! Använd den förbättrade \"mysqli\" utvidgningen för att "
+"undvika eventuella problem."
#: db_search.php:54 libraries/auth/config.auth.lib.php:83
#: libraries/auth/config.auth.lib.php:102
@@ -677,10 +668,8 @@ msgid "Search in database"
msgstr "Sök i databas"
#: db_search.php:300
-#, fuzzy
-#| msgid "Word(s) or value(s) to search for (wildcard: \"%\"):"
msgid "Words or values to search for (wildcard: \"%\"):"
-msgstr "Ord eller värde(n) att söka efter (jokertecken: \"%\"):"
+msgstr "Ord eller värden att söka efter (jokertecken: \"%\"):"
#: db_search.php:305
msgid "Find:"
@@ -691,10 +680,8 @@ msgid "Words are separated by a space character (\" \")."
msgstr "Ord är separerade med mellanslag (\" \")."
#: db_search.php:323
-#, fuzzy
-#| msgid "Inside table(s):"
msgid "Inside tables:"
-msgstr "I tabell(er):"
+msgstr "Inuti tabeller:"
#: db_search.php:353
msgid "Inside column:"
@@ -730,8 +717,8 @@ msgstr "Spårning är inte aktiv."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "Denna vy har åtminstone detta antal rader. Se %sdokumentationen%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -798,8 +785,8 @@ msgstr "Utskriftsvänlig visning"
msgid "Empty"
msgstr "Töm"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -872,9 +859,9 @@ msgstr "Uppdaterad"
msgid "Status"
msgstr "Status"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -968,8 +955,8 @@ msgstr "SQL-satserna har sparats till filen %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Du försökte förmodligen ladda upp en för stor fil. Se %sdokumentationen%s "
"för att gå runt denna begränsning."
@@ -1147,11 +1134,11 @@ msgstr "Tar bort markerade användare"
msgid "Close"
msgstr "Stäng"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Ändra"
@@ -1197,41 +1184,35 @@ msgstr ","
#: js/messages.php:78
msgid "KiB sent since last refresh"
-msgstr ""
+msgstr "KB skickade sedan den senaste uppdateringen"
#: js/messages.php:79
msgid "KiB received since last refresh"
-msgstr ""
+msgstr "kb mottagna sedan den senaste uppdateringen"
#: js/messages.php:80
-#, fuzzy
-#| msgid "Server traffic"
msgid "Server traffic (in KiB)"
-msgstr "Server trafik"
+msgstr "Server trafik (i kb)"
#: js/messages.php:81
msgid "Connections since last refresh"
-msgstr ""
+msgstr "Anslutningar sedan förra uppdateringen"
#: js/messages.php:82 server_status.php:794
msgid "Processes"
msgstr "Processer"
#: js/messages.php:83
-#, fuzzy
-#| msgid "Connections"
msgid "Connections / Processes"
-msgstr "Förbindelser"
+msgstr "Förbindelser / Processer"
#: js/messages.php:84
msgid "Issued queries since last refresh"
-msgstr ""
+msgstr "Skapade frågor sedan föregående uppdateringen"
#: js/messages.php:85
-#, fuzzy
-#| msgid "SQL queries"
msgid "Issued queries"
-msgstr "SQL-frågor"
+msgstr "Skapade frågor"
#: js/messages.php:87 server_status.php:402
msgid "Query statistics"
@@ -1321,12 +1302,11 @@ msgstr "Raderar"
#: js/messages.php:122
msgid "The definition of a stored function must contain a RETURN statement!"
msgstr ""
+"Definitionen av en sparad funktion måste innehålla en RETURN-programsats!"
#: js/messages.php:123
-#, fuzzy
-#| msgid "Missing value in the form!"
msgid "Value too long in the form!"
-msgstr "Värde saknas i formuläret!"
+msgstr "Värdet för långt i formuläret!"
#: js/messages.php:126
msgid ""
@@ -1691,6 +1671,217 @@ msgstr "Minuter"
msgid "Second"
msgstr "Sekunder"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Teckenstorlek"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
+"i HTML-formuläret."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Den uppladdade filen blev endast delvis uppladdad."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Saknar en temporär katalog."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Misslyckades att skriva fil till disk."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Filuppladdning stoppades av tillägg."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Okänt fel i filuppladdning."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Inga index är definierade!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Index"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unik"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Packad"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Kardinalitet"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Kommentar"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Den primära nyckeln har tagits bort"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Index %s har tagits bort"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas "
+"bort."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Databaserna"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Fel"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d rad påverkad."
+msgstr[1] "%1$d rader påverkade."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d rad borttagen."
+msgstr[1] "%1$d rader borttagna."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d rad infogad."
+msgstr[1] "%1$d rader infogade."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Kunde inte spara den senaste tabellen"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "De senaste tabellerna"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Det finns inga nya tabeller"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+"Det finns ingen detaljerad statusinformation tillgänglig för denna "
+"lagringsmotor."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s är tillgänglig på denna MySQL-server."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s har inaktiverats på denna MySQL-server."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Ogiltig databas"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Ogiltigt tabellnamn"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Tabell %s har döpts om till %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Kunde inte spara UI inställningarna för tabellen"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "Ingen giltig sökväg för tema %s hittades!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Ingen förhandsgranskning tillgänglig."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "använd detta"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Standardtema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "Tema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "Temats sökväg för tema %s hittades inte!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Kan ej skapa förbindelse: ogiltiga inställningar."
@@ -1704,11 +1895,11 @@ msgstr "Välkommen till %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda %1"
-"$suppsättningsskript%2$s för att skapa denna."
+"Du har troligen inte skapat en konfigurationsfil. Du vill kanske använda "
+"%1$suppsättningsskript%2$s för att skapa denna."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1812,14 +2003,6 @@ msgstr "PBMS fel"
msgid "PBMS connection failed:"
msgstr "PBMS uppkoppling misslyckades"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Fel"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS hämtar BLOB info misslyckades"
@@ -1872,11 +2055,6 @@ msgstr "Tabeller"
msgid "Data"
msgstr "Data"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Index"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -1904,16 +2082,16 @@ msgid "Check Privileges"
msgstr "Kontrollera privilegier"
#: libraries/common.inc.php:587
-#, fuzzy
-#| msgid "Could not save configuration"
msgid "Failed to read configuration file"
-msgstr "Kunde inte spara konfigurationen"
+msgstr "Kunde inte läsa konfigurationsfilen"
#: libraries/common.inc.php:588
msgid ""
"This usually means there is a syntax error in it, please check any errors "
"shown below."
msgstr ""
+"Detta betyder oftast att det finns ett syntaxfel i det, kontrollera "
+"eventuella fel som visas nedan."
#: libraries/common.inc.php:595
#, php-format
@@ -2155,11 +2333,79 @@ msgstr "Det finns inga filer att ladda upp"
#: libraries/common.lib.php:2964 libraries/common.lib.php:2965
msgid "Execute"
-msgstr ""
+msgstr "Utför"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Teckenstorlek"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Båda"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Ingenstans"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Vänster"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Höger"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Öppen"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Stängd"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "struktur"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "data"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "struktur och data"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Snabb - visa endast få alternativ för konfiguration"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Anpassad - visa alla tillgängliga konfigurations optioner"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad "
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "kompletta infogningar"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "utökade infogningar"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "båda av ovanstående"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "Ingen av ovanstående"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2815,12 +3061,6 @@ msgstr "Ange kataloger för import och export och komprimeringsalternativ"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Databaserna"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Visningsalternativ för databaser"
@@ -4434,78 +4674,6 @@ msgstr "Tomt lösenord för phpMyAdmin kontrollanvändare vid användning av pma
msgid "Incorrect IP address: %s"
msgstr "Felaktig IP-adress: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Båda"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Ingenstans"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Vänster"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Höger"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Öppen"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Stängd"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "struktur"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "data"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "struktur och data"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Snabb - visa endast få alternativ för konfiguration"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Anpassad - visa alla tillgängliga konfigurations optioner"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Anpassad - Som ovan, men utan valet snabb/anpassad "
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "kompletta infogningar"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "utökade infogningar"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "båda av ovanstående"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "Ingen av ovanstående"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4518,22 +4686,19 @@ msgid "The %s extension is missing. Please check your PHP configuration."
msgstr "%s tillägg saknas. Vänligen kontrollera din PHP konfiguration."
#: libraries/db_events.inc.php:30
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event %s"
-msgstr "Exportera innehåll"
+msgstr "Exportera händelse %s"
#: libraries/db_events.inc.php:34
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of event \"%s\""
-msgstr "Exportera innehåll"
+msgstr "Exportera händelse \"%s\""
#: libraries/db_events.inc.php:40
-#, fuzzy, php-format
-#| msgid "No tables found in database"
+#, php-format
msgid "No event with name %s found in database %s"
-msgstr "Inga tabeller finns i databasen."
+msgstr "Ingen händelse med namnet %s finns i databasen %s"
#: libraries/db_events.inc.php:56 libraries/db_links.inc.php:101
#: libraries/export/sql.php:609
@@ -4541,10 +4706,8 @@ msgid "Events"
msgstr "Händelser"
#: libraries/db_events.inc.php:58 libraries/db_events.inc.php:60
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no events to display."
-msgstr "Det finns inga filer att ladda upp"
+msgstr "Det finns inga händelser att visa."
#: libraries/db_events.inc.php:67 libraries/db_routines.lib.php:690
#: libraries/db_routines.lib.php:846 libraries/db_routines.lib.php:1214
@@ -4556,42 +4719,23 @@ msgstr "Namn"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is enabled"
-msgstr ""
+msgstr "Schemaläggaren är aktiverad"
#: libraries/db_events.inc.php:129
msgid "The event scheduler is disabled"
-msgstr ""
+msgstr "Schemaläggaren är avaktiverad"
#: libraries/db_events.inc.php:131
msgid "Turn it on"
-msgstr ""
+msgstr "Slå på den"
#: libraries/db_events.inc.php:131
msgid "Turn it off"
-msgstr ""
+msgstr "Stäng av den"
#: libraries/db_events.inc.php:141
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add an event"
-msgstr "Lägg till en ny server"
-
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Servern svarar inte"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Detaljer..."
+msgstr "Lägg till en ny händelse"
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
@@ -4627,32 +4771,25 @@ msgid "Triggers"
msgstr "Trigger"
#: libraries/db_routines.lib.php:659
-#, fuzzy
-#| msgid "Details..."
msgid "Details"
-msgstr "Detaljer..."
+msgstr "Detaljer"
#: libraries/db_routines.lib.php:662
-#, fuzzy
-#| msgid "Routines"
msgid "Routine name"
-msgstr "Rutiner"
+msgstr "Rutinnamn"
#: libraries/db_routines.lib.php:679
-#, fuzzy, php-format
-#| msgid "Change"
+#, php-format
msgid "Change to %s"
-msgstr "Ändra"
+msgstr "Ändra till %s"
#: libraries/db_routines.lib.php:684
msgid "Parameters"
-msgstr ""
+msgstr "Parametrar"
#: libraries/db_routines.lib.php:689
-#, fuzzy
-#| msgid "Direct links"
msgid "Direction"
-msgstr "Direkta länkar"
+msgstr "Riktning"
#: libraries/db_routines.lib.php:692 libraries/tbl_properties.inc.php:105
msgid "Length/Values"
@@ -4667,9 +4804,9 @@ msgstr "Längd/Värden"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4677,67 +4814,48 @@ msgid "Options"
msgstr "Alternativ"
#: libraries/db_routines.lib.php:707
-#, fuzzy
-#| msgid "Add prefix"
msgid "Add parameter"
-msgstr "Lägg till prefix"
+msgstr "Lägg till parameter"
#: libraries/db_routines.lib.php:710
-#, fuzzy
-#| msgid "Remove database"
msgid "Remove last parameter"
-msgstr "Radera databasen"
+msgstr "Ta bort senaste parametern"
#: libraries/db_routines.lib.php:715 libraries/db_routines.lib.php:1217
msgid "Return type"
msgstr "Returtyp"
#: libraries/db_routines.lib.php:721
-#, fuzzy
-#| msgid "Length/Values"
msgid "Return length/values"
-msgstr "Längd/Värden"
+msgstr "Returnera längd/värden"
#: libraries/db_routines.lib.php:726
-#, fuzzy
-#| msgid "Table options"
msgid "Return options"
-msgstr "Tabellalternativ"
+msgstr "Return alternativ"
#: libraries/db_routines.lib.php:745
-#, fuzzy
-#| msgid "Description"
msgid "Definition"
-msgstr "Beskrivning"
+msgstr "Definition"
#: libraries/db_routines.lib.php:749
msgid "Is deterministic"
-msgstr ""
+msgstr "Är deterministisk"
#: libraries/db_routines.lib.php:753
msgid "Definer"
-msgstr ""
+msgstr "Definierare"
#: libraries/db_routines.lib.php:758
-#, fuzzy
-#| msgid "Security"
msgid "Security type"
-msgstr "Säkerhet"
+msgstr "Säkerhetstyp"
#: libraries/db_routines.lib.php:765
msgid "SQL data access"
-msgstr ""
-
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Kommentar"
+msgstr "SQL dataaccess"
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
-#, fuzzy
-#| msgid "Routines"
msgid "Routine parameters"
-msgstr "Rutiner"
+msgstr "Rutinparametrar"
#: libraries/db_routines.lib.php:849 tbl_change.php:284 tbl_change.php:322
msgid "Function"
@@ -4752,44 +4870,40 @@ msgstr "Värde"
#: libraries/db_routines.lib.php:965
msgid "You must provide a routine name"
-msgstr ""
+msgstr "Du måste ange ett rutinnamn"
#: libraries/db_routines.lib.php:984
#, php-format
msgid "Invalid direction \"%s\" given for parameter."
-msgstr ""
+msgstr "Ogiltig riktning \"%s\" angiven för parameter."
#: libraries/db_routines.lib.php:995 libraries/db_routines.lib.php:1036
msgid ""
"You must provide length/values for routine parameters of type ENUM, SET, "
"VARCHAR and VARBINARY."
msgstr ""
+"Du måste ange Längd / värden rutin parametrar av typen ENUM, SET, VARCHAR "
+"och VARBINARY."
#: libraries/db_routines.lib.php:1020
msgid "You must provide a name and a type for each routine parameter."
-msgstr ""
+msgstr "Du måste ange ett namn och en typ för varje rutinparameter."
#: libraries/db_routines.lib.php:1077
msgid "You must provide a routine definition."
-msgstr ""
+msgstr "Du måste ange en rutindefinition."
#: libraries/db_routines.lib.php:1209
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no routines to display."
-msgstr "Det finns inga filer att ladda upp"
+msgstr "Det finns inga rutiner att visa."
#: libraries/db_routines.lib.php:1253
-#, fuzzy
-#| msgid "Add index"
msgid "Add routine"
-msgstr "Lägg till index"
+msgstr "Lägg till rutin."
#: libraries/db_routines.lib.php:1256
-#, fuzzy
-#| msgid "You don't have sufficient privileges to be here right now!"
msgid "You do not have the necessary privileges to create a new routine"
-msgstr "Du har inte tillräcklig behörighet för att vara här nu!"
+msgstr "Du har inte tillräcklig behörighet för att skapa en ny rutin"
#: libraries/db_structure.lib.php:48 libraries/display_tbl.lib.php:2121
msgid ""
@@ -4799,6 +4913,23 @@ msgstr ""
"Kan vara ungefärligt. Se [a@./Documentation.html#faq3_11@Documentation)FAQ "
"3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "Uppkoppling för controluser enligt din konfiguration misslyckades."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Servern svarar inte"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(eller den lokala MySQL-serverns socket är inte korrekt konfigurerad)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Detaljer..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4937,8 +5068,8 @@ msgstr ", @TABLE@ blir tabellnamnet"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Detta värde tolkas med %1$sstrftime%2$s, så du kan använda strängar med "
"tidsformatering. Dessutom kommer följande omvandlingar att ske: %3$s. Övrig "
@@ -5169,15 +5300,15 @@ msgstr "Webbläsaromvandling"
#: libraries/display_tbl.lib.php:642
msgid "Geometry"
-msgstr ""
+msgstr "Geometri"
#: libraries/display_tbl.lib.php:643
msgid "Well Known Text"
-msgstr ""
+msgstr "Välkänd text"
#: libraries/display_tbl.lib.php:644
msgid "Well Known Binary"
-msgstr ""
+msgstr "Välkänd binär"
#: libraries/display_tbl.lib.php:1288
msgid "Copy"
@@ -5223,7 +5354,7 @@ msgstr "Visa diagram"
#: libraries/display_tbl.lib.php:2548
msgid "Visualize GIS data"
-msgstr ""
+msgstr "Visualisera GIS-data"
#: libraries/display_tbl.lib.php:2568
msgid "Create view"
@@ -5234,27 +5365,23 @@ msgid "Link not found"
msgstr "Länken hittades inte"
#: libraries/display_triggers.inc.php:35
-#, fuzzy, php-format
-#| msgid "Export contents"
+#, php-format
msgid "Export of trigger %s"
-msgstr "Exportera innehåll"
+msgstr "Exportera trigger %s"
#: libraries/display_triggers.inc.php:39
#, php-format
msgid "Export of trigger \"%s\""
-msgstr ""
+msgstr "Exportera trigger \"%s\""
#: libraries/display_triggers.inc.php:47
-#, fuzzy, php-format
-#| msgid "No valid image path for theme %s found!"
+#, php-format
msgid "No trigger with name %s found"
-msgstr "Ingen giltig sökväg för tema %s hittades!"
+msgstr "Ingen trigger med namn %s hittad"
#: libraries/display_triggers.inc.php:64 libraries/display_triggers.inc.php:66
-#, fuzzy
-#| msgid "There are no files to upload"
msgid "There are no triggers to display."
-msgstr "Det finns inga filer att ladda upp"
+msgstr "Det finns inga triggers att visa"
#: libraries/display_triggers.inc.php:77 server_status.php:800 sql.php:936
msgid "Time"
@@ -5265,10 +5392,8 @@ msgid "Event"
msgstr "Händelse"
#: libraries/display_triggers.inc.php:120
-#, fuzzy
-#| msgid "Add a new server"
msgid "Add a trigger"
-msgstr "Lägg till en ny server"
+msgstr "Lägg till en ny Trigger"
#: libraries/engines/bdb.lib.php:20 main.php:211
msgid "Version information"
@@ -5709,11 +5834,11 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
-"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page%"
-"s."
+"Dokumentation och ytterligare information finns på %sPrimeBase XT Home Page"
+"%s."
#: libraries/engines/pbxt.lib.php:129
msgid "The PrimeBase XT Blog by Paul McCullagh"
@@ -6015,55 +6140,14 @@ msgstr "Vy"
msgid "Export contents"
msgstr "Exportera innehåll"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Den uppladdade filen överskrider direktivet upload_max_filesize i php.ini."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Den uppladdade filen överskrider direktivet MAX_FILE_SIZE som specificerades "
-"i HTML-formuläret."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Den uppladdade filen blev endast delvis uppladdad."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Saknar en temporär katalog."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Misslyckades att skriva fil till disk."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Filuppladdning stoppades av tillägg."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Okänt fel i filuppladdning."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Fel vid flytt av uppladdad fil, se FAQ 1.11"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
msgstr "Öppna nytt phpMyAdmin-fönster"
#: libraries/gis_visualization.lib.php:129
-#, fuzzy
-#| msgid "No data found for the chart."
msgid "No data found for GIS visualization."
-msgstr "Resultat saknas för tabell."
+msgstr "Inga data finns för GIS visualisering."
#: libraries/header_printview.inc.php:49 libraries/header_printview.inc.php:54
msgid "SQL result"
@@ -6073,6 +6157,42 @@ msgstr "SQL-resultat"
msgid "Generated by"
msgstr "Genererad av"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Visa en strukturs innehåll genom att klicka på dess namn"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ"
+"\" länk"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Redigera dess struktur genom att följa \"Struktur\" länken"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Gå till databas"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "inställningar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Gå till tabell"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Gå till vy"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6139,42 +6259,6 @@ msgstr "Kolumn-namn"
msgid "This plugin does not support compressed imports!"
msgstr "Detta tillägg stöder inte komprimerade importer!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Följande strukturer har antingen skapats eller ändrats. Här kan du"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Visa en strukturs innehåll genom att klicka på dess namn"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Ändra någon av inställningarna genom att klicka på motsvarande \"Alternativ"
-"\" länk"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Redigera dess struktur genom att följa \"Struktur\" länken"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Gå till databas"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "inställningar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Gå till tabell"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Gå till vy"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6200,42 +6284,6 @@ msgstr ""
"Den angivna XML-filen var antingen felaktig eller ofullständig. Korrigera "
"problemet och försök igen."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Inga index är definierade!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unik"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Packad"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Kardinalitet"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Den primära nyckeln har tagits bort"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Index %s har tagits bort"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"Index %1$s och %2$s verkar vara identiska och ett av dem kan möjligen tas "
-"bort."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6246,27 +6294,6 @@ msgstr "Inget"
msgid "Convert to Kana"
msgstr "Konvertera till Kana"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d rad påverkad."
-msgstr[1] "%1$d rader påverkade."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d rad borttagen."
-msgstr[1] "%1$d rader borttagna."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d rad infogad."
-msgstr[1] "%1$d rader infogade."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Från"
@@ -6505,18 +6532,6 @@ msgstr "Ladda om navigering ram"
msgid "This format has no options"
msgstr "Detta format har inga alternativ"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Kunde inte spara den senaste tabellen"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "De senaste tabellerna"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Det finns inga nya tabeller"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Inte OK"
@@ -6901,6 +6916,61 @@ msgstr "Skillnad"
msgid "Target database"
msgstr "Måldatabas"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "Kör SQL-fråga/frågor på server %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Kör SQL-fråga/frågor i databasen %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Rensa"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Kolumn"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Skapa bokmärke för den här SQL-frågan"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Låt varje användare få tillgång till detta bokmärke"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Ersätt befintligt bokmärke med samma namn"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Skriv inte över denna fråga utifrån detta fönster"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Avgränsare"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Visa frågan här igen "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Visa endast"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Textfilens plats"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Uppladdningskatalog på webbserver"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6964,61 +7034,6 @@ msgstr "Ogiltig identifierare"
msgid "Unknown Punctuation String"
msgstr "Okänd interpunktion i sträng"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "Kör SQL-fråga/frågor på server %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Kör SQL-fråga/frågor i databasen %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Rensa"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Kolumn"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Skapa bokmärke för den här SQL-frågan"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Låt varje användare få tillgång till detta bokmärke"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Ersätt befintligt bokmärke med samma namn"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Skriv inte över denna fråga utifrån detta fönster"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Avgränsare"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Visa frågan här igen "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Visa endast"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Textfilens plats"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Uppladdningskatalog på webbserver"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7028,50 +7043,6 @@ msgstr ""
"SQL-validatorn kunde inte initieras. Kontrollera om du har installerat de "
"nödvändiga PHP-tilläggen enligt %sdokumentationen%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-"Det finns ingen detaljerad statusinformation tillgänglig för denna "
-"lagringsmotor."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s är tillgänglig på denna MySQL-server."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s har inaktiverats på denna MySQL-server."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Denna MySQL-server stödjer inte lagringsmotorn %s."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Ogiltig databas"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Ogiltigt tabellnamn"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "Fel vid namnbyte av tabell %1$s till %2$s"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Tabell %s har döpts om till %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Kunde inte spara UI inställningarna för tabellen"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tabellen verkar vara tom!"
@@ -7192,38 +7163,6 @@ msgstr "Partitionsdefinition"
msgid "+ Add a value"
msgstr "+ Lägg till ett nytt värde"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "Ingen giltig sökväg för tema %s hittades!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Ingen förhandsgranskning tillgänglig."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "använd detta"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Standardtema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "Tema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "Temats sökväg för tema %s hittades inte!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7551,8 +7490,8 @@ msgid ""
"Your PHP MySQL library version %s differs from your MySQL server version %s. "
"This may cause unpredictable behavior."
msgstr ""
-"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version %"
-"s. Detta kan orsaka oförutsägbara beteenden."
+"Din PHP MySQL bibliotekversion %s skiljer sig från din MySQL server version "
+"%s. Detta kan orsaka oförutsägbara beteenden."
#: main.php:341
#, php-format
@@ -8263,8 +8202,8 @@ msgstr "Ta bort databaserna med samma namn som användarna."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Anm: phpMyAdmin hämtar användarnas privilegier direkt från MySQL:s "
"privilegiumtabeller. Innehållet i dessa tabeller kan skilja sig från "
@@ -8547,20 +8486,18 @@ msgid "Refresh rate"
msgstr "Uppdateringsfrekvens"
#: server_status.php:31
-#, fuzzy, php-format
-#| msgid "minutes"
+#, php-format
msgid "%d minute"
msgid_plural "%d minutes"
-msgstr[0] "minuter"
-msgstr[1] "minuter"
+msgstr[0] "%d minut"
+msgstr[1] "%d minuter"
#: server_status.php:33
-#, fuzzy, php-format
-#| msgid "second"
+#, php-format
msgid "%d second"
msgid_plural "%d seconds"
-msgstr[0] "Sekund"
-msgstr[1] "Sekund"
+msgstr[0] "%d sekund"
+msgstr[1] "%d sekunder"
#: server_status.php:134
#, php-format
@@ -8643,10 +8580,8 @@ msgid "All status variables"
msgstr "Alla statusvariabler"
#: server_status.php:413 server_status.php:439
-#, fuzzy
-#| msgid "Refresh rate"
msgid "Refresh rate:"
-msgstr "Uppdateringsfrekvens"
+msgstr "Uppdateringsfrekvens:"
#: server_status.php:462
msgid "Containing the word:"
@@ -9533,7 +9468,7 @@ msgstr ""
#: server_variables.php:58
msgid "Setting variable failed"
-msgstr ""
+msgstr "Definiering av variabel misslyckades"
#: server_variables.php:77
msgid "Server variables and settings"
@@ -9809,8 +9744,8 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - %"
-"shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
+"Om du känner att detta är nödvändigt, använd extra skyddsinställningar - "
+"%shost autentisering%s inställningarna och %strusted proxies listan%s. Dock "
"kan IP-baserat skydd inte vara tillförlitligt om din IP tillhör en ISP där "
"tusentals användare, inklusive dig, är anslutna till"
@@ -10035,10 +9970,8 @@ msgid "View dump (schema) of table"
msgstr "Visa SQL-satser för tabellen"
#: tbl_gis_visualization.php:111
-#, fuzzy
-#| msgid "Display servers selection"
msgid "Display GIS Visualization"
-msgstr "Visa serverval"
+msgstr "Visa GIS Visualisering"
#: tbl_gis_visualization.php:157
msgid "Width"
@@ -10049,42 +9982,32 @@ msgid "Height"
msgstr "Höjd"
#: tbl_gis_visualization.php:165
-#, fuzzy
-#| msgid "Textarea columns"
msgid "Label column"
-msgstr "Textarea kolumner"
+msgstr "Etikett kolumn"
#: tbl_gis_visualization.php:167
-#, fuzzy
-#| msgid "- none -"
msgid "-- None --"
-msgstr "- ingen -"
+msgstr " - Inget -"
#: tbl_gis_visualization.php:180
-#, fuzzy
-#| msgid "Total count"
msgid "Spatial column"
-msgstr "Totalt antal"
+msgstr "Spatial kolumn"
#: tbl_gis_visualization.php:201
msgid "Use OpenStreetMaps as Base Layer"
-msgstr ""
+msgstr "Använd OpenStreetMaps som baslager"
#: tbl_gis_visualization.php:204
msgid "Redraw"
msgstr "Rita om"
#: tbl_gis_visualization.php:206
-#, fuzzy
-#| msgid "Save as file"
msgid "Save to file"
-msgstr "Spara som fil"
+msgstr "Spara till fil"
#: tbl_gis_visualization.php:207
-#, fuzzy
-#| msgid "Table name"
msgid "File name"
-msgstr "Tabellnamn"
+msgstr "Filnamn"
#: tbl_indexes.php:66
msgid "The name of the primary key must be \"PRIMARY\"!"
@@ -10329,7 +10252,7 @@ msgstr "Visningsordning:"
#: tbl_structure.php:158 tbl_structure.php:163 tbl_structure.php:611
msgid "Spatial"
-msgstr ""
+msgstr "Spatial"
#: tbl_structure.php:165 tbl_structure.php:169
msgid "Browse distinct values"
@@ -10348,10 +10271,8 @@ msgid "Add unique index"
msgstr "Lägg till unikt index"
#: tbl_structure.php:176 tbl_structure.php:177
-#, fuzzy
-#| msgid "Add index"
msgid "Add SPATIAL index"
-msgstr "Lägg till index"
+msgstr "Lägg till SPATIAL index"
#: tbl_structure.php:178 tbl_structure.php:179
msgid "Add FULLTEXT index"
diff --git a/po/ta.po b/po/ta.po
index a3e4341068..3cb35a82bf 100644
--- a/po/ta.po
+++ b/po/ta.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-04-16 10:43+0200\n"
"Last-Translator: Sutharshan \n"
"Language-Team: Tamil \n"
+"Language: ta\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ta\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "தேடல்"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "தேடல்"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "செல் "
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr ""
@@ -130,9 +130,9 @@ msgstr ""
msgid "Table comments"
msgstr ""
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr ""
msgid "Column"
msgstr ""
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr ""
msgid "Type"
msgstr ""
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +196,12 @@ msgstr ""
msgid "Comments"
msgstr ""
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +212,17 @@ msgstr ""
msgid "No"
msgstr ""
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -260,79 +259,79 @@ msgstr ""
msgid "The database name is empty!"
msgstr ""
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr ""
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr ""
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr ""
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr ""
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr ""
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr ""
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr ""
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr ""
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr ""
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr ""
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr ""
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr ""
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%sஐ சேர்க்க"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "தானாக அதிகரிக்கும் பெறுமதியை சேர்க்க"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "தடைகளை சேர்க்க"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -341,14 +340,14 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -498,97 +497,97 @@ msgstr ""
msgid "Submit Query"
msgstr ""
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr ""
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr ""
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, php-format
msgid "No routine with name %1$s found in database %2$s"
msgstr ""
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr ""
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr ""
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr ""
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -714,8 +713,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -782,8 +781,8 @@ msgstr ""
msgid "Empty"
msgstr ""
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -858,9 +857,9 @@ msgstr ""
msgid "Status"
msgstr ""
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -952,8 +951,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1121,11 +1120,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr ""
@@ -1698,6 +1697,212 @@ msgstr ""
msgid "Second"
msgstr ""
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr ""
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது"
+msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Display table filter"
+msgid "Recent tables"
+msgstr "கருதிட்குள் சேர்க்க"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1711,8 +1916,8 @@ msgstr ""
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"நீங்கள் அமைப்பு கோப்பை உருவாக்கவில்லை. அதை உருவாக்க நீங்கள் %1$s உருவாக்க கோவையை %2$s "
"பயன்படுத்தலாம்"
@@ -1816,14 +2021,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr ""
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1876,11 +2073,6 @@ msgstr ""
msgid "Data"
msgstr ""
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2157,8 +2349,76 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr ""
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2791,12 +3051,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4274,78 +4528,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr ""
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4411,23 +4593,6 @@ msgstr ""
msgid "Add an event"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4497,9 +4662,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4548,11 +4713,6 @@ msgstr ""
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4611,6 +4771,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4749,8 +4926,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5446,8 +5623,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5732,42 +5909,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5785,6 +5926,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5844,40 +6019,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5900,40 +6041,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -5944,27 +6051,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d வரிசை மாற்றப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் மாற்றப்பட்டுள்ளன"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d வரிசை அகற்றப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் அகற்றப்பட்டுள்ளன"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d வரிசை சேர்க்கப்பட்டுள்ளது"
-msgstr[1] "%1$d வரிசைகள் சேர்க்கப்பட்டுள்ளன"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6205,20 +6291,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Display table filter"
-msgid "Recent tables"
-msgstr "கருதிட்குள் சேர்க்க"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6590,57 +6662,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6696,6 +6717,57 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6703,48 +6775,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6854,38 +6884,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "புதிய பயனாளரை சேர்க்க"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7836,8 +7834,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/te.po b/po/te.po
index d5ae2a4646..781da0d5e6 100644
--- a/po/te.po
+++ b/po/te.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-04-07 17:06+0200\n"
"Last-Translator: \n"
"Language-Team: Telugu \n"
+"Language: te\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: te\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "శోధించు"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "శోధించు"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "వెళ్ళు"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr ""
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "డేటాబేస్ వ్యాఖ్య:"
@@ -132,9 +132,9 @@ msgid "Table comments"
msgstr "పట్టిక వ్యాఖ్యలు"
# మొదటి అనువాదము
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "పట్టిక వ్యాఖ్యలు"
msgid "Column"
msgstr "ఆజ్ఞ"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "ఆజ్ఞ"
msgid "Type"
msgstr "రకం"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,13 +200,12 @@ msgstr ""
msgid "Comments"
msgstr "వ్యాఖ్యలు"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +216,17 @@ msgstr "వ్యాఖ్యలు"
msgid "No"
msgstr "కాదు"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -265,81 +264,81 @@ msgstr "అన్నీ ఎంచుకోవద్దు"
msgid "The database name is empty!"
msgstr "డేటాబేస్ పేరు ఖాళీగా ఉన్నది"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr ""
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "%s డేటాబేస్ %s డేటాబేస్ కు కాపీ అయింది"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "డేటాబేసుకు ఈ పేరు పెట్టండి"
# మొదటి అనువాదము
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "ఆజ్ఞ"
# మొదటి అనువాదము
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "డేటాబేస్ తొలగించండి"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s డేటాబేస్ తుడిచివేయడమైనది"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "డేటాబేస్ ను తుడిచివేయి"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "డేటాబేస్ ను ఇక్కడికి కాపీ చేయి"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "నిర్మాణం మాత్రమే"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "నిర్మాణం, మరియు డేటా"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "డేటా మాత్రమే"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "కాపీ చేయబోయే ముందు డేటాబేస్ సృష్టించు"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s cErcu"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr ""
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr ""
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr ""
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,14 +347,14 @@ msgstr ""
msgid "Collation"
msgstr ""
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr ""
@@ -505,104 +504,104 @@ msgstr ""
msgid "Submit Query"
msgstr "క్వెరీ ని సమర్పించు"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "మీ SQL క్వెరీ విజయవంతంగా నిర్వహించబడింది"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr ""
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "డేటాబేస్ లో ఏ పట్టికలు లేవు"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Database %s has been dropped."
msgid "Routine %1$s has been modified."
msgstr "%s డేటాబేస్ తుడిచివేయడమైనది"
# మొదటి అనువాదము
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Page has been created"
msgid "Routine %1$s has been created."
msgstr "పుటను సృష్టించడమైనది"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
# మొదటి అనువాదము
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create"
msgid "Create routine"
msgstr "సృష్టించు"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -731,8 +730,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
# మొదటి అనువాదము
@@ -802,8 +801,8 @@ msgstr ""
msgid "Empty"
msgstr "ఖాళీ"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -879,9 +878,9 @@ msgstr ""
msgid "Status"
msgstr "స్థితి"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -973,8 +972,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1146,11 +1145,11 @@ msgstr ""
msgid "Close"
msgstr "మూసివేయి"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "మార్చు"
@@ -1711,6 +1710,217 @@ msgstr "నిమిషం"
msgid "Second"
msgstr "క్షణం"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr ""
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr ""
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr ""
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr ""
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "వ్యాఖ్య"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr ""
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr ""
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "పొరపాటు"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Server configuration"
+msgid "Could not save recent table"
+msgstr "సేవకి స్వరూపణం"
+
+# మొదటి అనువాదము
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgctxt "short form"
+#| msgid "Create table"
+msgid "Recent tables"
+msgstr "పట్టికను సృష్టించు"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr ""
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+# మొదటి అనువాదము
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "తీసుకొనుము"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1724,8 +1934,8 @@ msgstr "%sకి స్వాగతం"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1830,14 +2040,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "పుటని సృష్టించుటలో తప్పిదము జరిగినది"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "పొరపాటు"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1892,11 +2094,6 @@ msgstr "పట్టికలు"
msgid "Data"
msgstr ""
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr ""
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2178,8 +2375,80 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "ఎత్తు"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "మూసివేయి"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "నిర్మాణాకృతి"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "భోగట్టా"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "నిర్మాణాకృతి మరియు భోగట్టా"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2812,12 +3081,6 @@ msgstr ""
msgid "LaTeX"
msgstr ""
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr ""
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4304,82 +4567,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "తప్పుడు ఐపీ చిరునామా: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "ఎత్తు"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "మూసివేయి"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "నిర్మాణాకృతి"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "భోగట్టా"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "నిర్మాణాకృతి మరియు భోగట్టా"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
# మొదటి అనువాదము
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
@@ -4447,23 +4634,6 @@ msgstr ""
msgid "Add an event"
msgstr "క్రొత్త వాడుకరిని చేర్చు"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "వివరాలు..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4539,9 +4709,9 @@ msgstr "పొడవు/విలువలు"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4599,11 +4769,6 @@ msgstr "భద్రత"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "వ్యాఖ్య"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4663,6 +4828,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "వివరాలు..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4807,8 +4989,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5511,8 +5693,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5799,42 +5981,6 @@ msgstr "చూపుము"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5852,6 +5998,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "అమరికలు"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5913,40 +6093,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "అమరికలు"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5969,40 +6115,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr ""
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr ""
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr ""
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr ""
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6013,27 +6125,6 @@ msgstr "ఏమీలేదు"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6286,24 +6377,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Server configuration"
-msgid "Could not save recent table"
-msgstr "సేవకి స్వరూపణం"
-
-# మొదటి అనువాదము
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgctxt "short form"
-#| msgid "Create table"
-msgid "Recent tables"
-msgstr "పట్టికను సృష్టించు"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6675,57 +6748,6 @@ msgstr "తేడా"
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6783,6 +6805,57 @@ msgstr "పాఠ్యపు దస్త్రం యొక్క ప్రా
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6790,48 +6863,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr ""
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6944,39 +6975,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "క్రొత్త వినియోగదారుని చేర్చు"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-# మొదటి అనువాదము
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "తీసుకొనుము"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7953,8 +7951,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/th.po b/po/th.po
index eb270bbc1f..cd169e96d0 100644
--- a/po/th.po
+++ b/po/th.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-03-12 09:19+0100\n"
"Last-Translator: Automatically generated\n"
"Language-Team: thai \n"
+"Language: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: \n"
"X-Generator: Translate Toolkit 1.5.3\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -43,13 +43,13 @@ msgstr ""
msgid "Search"
msgstr "ค้นหา"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -62,18 +62,18 @@ msgstr "ค้นหา"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ลงมือ"
@@ -118,7 +118,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "หมายเหตุของฐานข้อมูล: "
@@ -128,9 +128,9 @@ msgstr "หมายเหตุของฐานข้อมูล: "
msgid "Table comments"
msgstr "หมายเหตุของตาราง"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -141,12 +141,12 @@ msgstr "หมายเหตุของตาราง"
msgid "Column"
msgstr "ชื่อคอลัมน์"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -156,9 +156,9 @@ msgstr "ชื่อคอลัมน์"
msgid "Type"
msgstr "ชนิด"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -196,13 +196,12 @@ msgstr "เชื่อมไปยัง"
msgid "Comments"
msgstr "หมายเหตุ"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -213,17 +212,17 @@ msgstr "หมายเหตุ"
msgid "No"
msgstr "ไม่"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -260,79 +259,79 @@ msgstr "ไม่เลือกเลย"
msgid "The database name is empty!"
msgstr "ไม่มีชื่อฐานข้อมูล"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "ฐานข้อมูล %s ได้ถูกเปลี่ยนชื่อเป็น %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "คัดลอกฐานข้อมูล %s ไปเก็บในชื่อ %s เรียบร้อยแล้ว"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "เปลี่ยนชื่อฐานข้อมูลเป็น"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "คำสั่ง"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "เอาฐานข้อมูลออก"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "โยนฐานข้อมูล %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "โยนฐานข้อมูลทิ้ง"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "คัดลอกฐานข้อมูลเป็น"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "เฉพาะโครงสร้าง"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ทั้งโครงสร้างและข้อมูล"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "เฉพาะข้อมูล"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "สร้างฐานข้อมูลก่อนคัดลอก"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "เพิ่ม %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "เพิ่มค่า AUTO_INCREMENT"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "เพิ่ม constraints"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "สลับไปยังฐานข้อมูลที่ถูกทำสำเนาไว้"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -341,14 +340,14 @@ msgstr "สลับไปยังฐานข้อมูลที่ถูก
msgid "Collation"
msgstr "การเรียงลำดับ"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr "การจัดเก็บการตั้งค่าของ phpMyAdmin ได้ถูกระงับเอาไว้ คลิก %shere%s เพื่อหาสาเหตุ"
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "แก้ไข หรือส่งออก รีเลชันแนล สกีมา"
@@ -499,102 +498,102 @@ msgstr "คำค้นบนฐานข้อมูล %s:"
msgid "Submit Query"
msgstr "ประมวลผลคำค้น"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "ทำคำค้นเสร็จเรียบร้อยแล้ว"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL คืนผลลัพธ์ว่างเปล่ากลับมา (null / 0 แถว)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL แสดง: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "โพรเซส"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "ไม่พบตารางใด ๆ ในฐานข้อมูล"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "โยนตาราง %s ทิ้งไปเรียบร้อยแล้ว"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "รุ่นของเซิร์ฟเวอร์"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -729,8 +728,8 @@ msgstr "หยุดการติดตามแล้ว"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -797,8 +796,8 @@ msgstr "แสดง"
msgid "Empty"
msgstr "ลบข้อมูล"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +875,9 @@ msgstr "ปรับปรุงแล้ว"
msgid "Status"
msgstr "สถานะ"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -970,8 +969,8 @@ msgstr ""
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1146,11 +1145,11 @@ msgstr "ถอนผู้ใช้ที่เลือก"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "แก้ไข"
@@ -1773,6 +1772,216 @@ msgstr "ใช้อยู่"
msgid "Second"
msgstr "ต่อวินาที"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "ดัชนี"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "เอกลักษณ์"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Cardinality"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "หมายเหตุ"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "โยนไพรมารีคีย์ทิ้งไปเรียบร้อยแล้ว"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ฐานข้อมูล"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "ผิดพลาด"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "ยังไม่ได้เลือกแถว"
+msgstr[1] "ยังไม่ได้เลือกแถว"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "ยังไม่ได้เลือกแถว"
+msgstr[1] "ยังไม่ได้เลือกแถว"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "ไม่มีตาราง"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "ตารางที่ถูกติดตาม"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1786,8 +1995,8 @@ msgstr "%s ยินดีต้อนรับ"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1886,14 +2095,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "ผิดพลาด"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1946,11 +2147,6 @@ msgstr "ตาราง"
msgid "Data"
msgstr "ข้อมูล"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "ดัชนี"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2230,8 +2426,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "ไม่ได้ปิดเครื่องหมายคำพูด"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "โครงสร้าง"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "ทั้งโครงสร้างและข้อมูล"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "คำสั่ง INSERT เต็มรูปแบบ"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "แทรกหลายระเบียนในคราวเดียว"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2902,12 +3175,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ฐานข้อมูล"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4439,87 +4706,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "ไม่ได้ปิดเครื่องหมายคำพูด"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "โครงสร้าง"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "ทั้งโครงสร้างและข้อมูล"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "คำสั่ง INSERT เต็มรูปแบบ"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "แทรกหลายระเบียนในคราวเดียว"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4589,23 +4775,6 @@ msgstr ""
msgid "Add an event"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4678,9 +4847,9 @@ msgstr "ความยาว/เซต*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4740,12 +4909,6 @@ msgstr "ชนิดคำค้น"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "หมายเหตุ"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4808,6 +4971,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "เซิร์ฟเวอร์ดังกล่าวไม่ตอบสนอง"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4968,8 +5148,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5702,8 +5882,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6013,42 +6193,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6066,6 +6210,41 @@ msgstr "ผลลัพธ์ SQL"
msgid "Generated by"
msgstr "สร้างโดย"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "ไม่มีฐานข้อมูล"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6127,41 +6306,6 @@ msgstr "ชื่อคอลัมน์"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "ไม่มีฐานข้อมูล"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6184,40 +6328,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "ยังไม่ได้กำหนดดัชนีใดๆ!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "เอกลักษณ์"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Cardinality"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "โยนไพรมารีคีย์ทิ้งไปเรียบร้อยแล้ว"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "โยนดัชนี %s ทิ้งไปเรียบร้อยแล้ว"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6230,29 +6340,6 @@ msgstr "ไม่มี"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "ยังไม่ได้เลือกแถว"
-msgstr[1] "ยังไม่ได้เลือกแถว"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "ยังไม่ได้เลือกแถว"
-msgstr[1] "ยังไม่ได้เลือกแถว"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6498,21 +6585,6 @@ msgstr ""
msgid "This format has no options"
msgstr "รูปแบบนี้ไม่มีตัวเลือก"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "ไม่มีตาราง"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "ตารางที่ถูกติดตาม"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "ไม่ตกลง"
@@ -6904,6 +6976,64 @@ msgstr ""
msgid "Target database"
msgstr "ค้นหาในฐานข้อมูล"
+#: libraries/sql_query_form.lib.php:223
+#, fuzzy, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "ปฏิทิน"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "ชื่อคอลัมน์"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "จดคำค้นนี้ไว้"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " แสดงคำค้นนี้อีกที "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "ดูอย่างเดียว"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "เลือกไฟล์ข้อความจาก"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6965,64 +7095,6 @@ msgstr "ชื่อตัวแปรไม่ถูกต้อง"
msgid "Unknown Punctuation String"
msgstr "มีเครื่องหมายวรรคตอนที่ไม่รู้จัก"
-#: libraries/sql_query_form.lib.php:223
-#, fuzzy, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "ประมวลผลคำค้นบนฐานข้อมูล %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "ปฏิทิน"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "ชื่อคอลัมน์"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "จดคำค้นนี้ไว้"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " แสดงคำค้นนี้อีกที "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "ดูอย่างเดียว"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "เลือกไฟล์ข้อความจาก"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "ไดเรกทอรีสำหรับอัพโหลด ที่เว็บเซิร์ฟเวอร์"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7032,48 +7104,6 @@ msgstr ""
"ไม่สามารถเริ่มตัวตรวจสอบ SQL ได้. กรุณาตรวจสอบว่า คุณได้ติดตั้ง php extensions ที่จำเป็น "
"ดังที่อธิบายไว้ใน %sdocumentation%s เรียบร้อยแล้ว"
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "ตาราง %s ได้ถูกเปลี่ยนชื่อเป็น %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7196,38 +7226,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "เพิ่มผู้ใช้ใหม่"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8255,8 +8253,8 @@ msgstr "โยนฐานข้อมูลที่มีชื่อเดี
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
@@ -10561,8 +10559,8 @@ msgstr "เปลี่ยนชื่อตารางเป็น"
#~ "The additional features for working with linked tables have been "
#~ "deactivated. To find out why click %shere%s."
#~ msgstr ""
-#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere%"
-#~ "s"
+#~ "ความสามารถเพิ่มเติมสำหรับ linked Tables ได้ถูกระงับเอาไว้ ตามเหตุผลที่แจ้งไว้ใน %shere"
+#~ "%s"
#~ msgid "No tables"
#~ msgstr "ไม่มีตาราง"
diff --git a/po/tr.po b/po/tr.po
index 16a314cbc5..920f7b365d 100644
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
-"PO-Revision-Date: 2011-06-23 19:35+0200\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
+"PO-Revision-Date: 2011-06-25 13:38+0200\n"
"Last-Translator: Burak Yavuz \n"
"Language-Team: turkish \n"
+"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tr\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Ara"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Ara"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Git"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Veritabanı %1$s oluşturuldu."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Veritabanı yorumu: "
@@ -132,9 +132,9 @@ msgstr "Veritabanı yorumu: "
msgid "Table comments"
msgstr "Tablo yorumları"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tablo yorumları"
msgid "Column"
msgstr "Sütun"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Sütun"
msgid "Type"
msgstr "Türü"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Bağlantı verilen"
msgid "Comments"
msgstr "Yorumlar"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Yorumlar"
msgid "No"
msgstr "Hayır"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "Tüm Seçimi Kaldır"
msgid "The database name is empty!"
msgstr "Veritabanı adı boş!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "%s veritabanı %s olarak yeniden adlandırıldı"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "%s veritabanı %s veritabanına kopyalandı"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Veritabanını şuna yeniden adlandır"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Komut"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Veritabanını kaldır"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s veritabanı kaldırıldı."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Veritabanını kaldır (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Veritabanını şuraya kopyala:"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Sadece yapı"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Yapı ve veri"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Sadece veri"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Kopyalamadan önce VERİTABANI OLUŞTUR"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s ekle"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT değeri ekle"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Kısıtlamaları ekle"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kopyalanmış veritabanına geç"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,7 +342,7 @@ msgstr "Kopyalanmış veritabanına geç"
msgid "Collation"
msgstr "Karşılaştırma"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -352,7 +351,7 @@ msgstr ""
"phpMyAdmin yapılandırma depolaması devre dışı bırakıldı. Nedenini öğrenmek "
"için %sburaya%s tıklayın."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Bağlantılı şemayı dışa aktar veya düzenle"
@@ -497,97 +496,96 @@ msgstr "%s veritabanındaki SQL sorgusu:"
msgid "Submit Query"
msgstr "Sorguyu Gönder"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL sorgunuz başarılı olarak çalıştırıldı"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] "İşlemin içindeki son ifade tarafından %d satır etkilendi"
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr "%s yordamı çalıştırma sonuçları"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL boş bir sonuç kümesi döndürdü (örn. sıfır satır)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
-#, fuzzy, php-format
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
+#, php-format
msgid "The following query has failed: \"%s\""
-msgstr "Sorgu \"%s\" başarısız oldu"
+msgstr "Aşağıdaki sorgu başarısız oldu: \"%s\""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL çıktısı: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr "İstek işlemede hata"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
-#, fuzzy, php-format
-#| msgid "No routine with name %s found in database %s"
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
+#, php-format
msgid "No routine with name %1$s found in database %2$s"
-msgstr "%s veritabanında %s adıyla yordam bulunamadı"
+msgstr "%1$s veritabanında %2$s adıyla yordam bulunamadı"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr "Yordamı çalıştır"
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr "%s yordamını dışa aktarma"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr "Geçersiz yordam türü: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr "Üzgünüm, kaldırılmış yordamı geri yükleme başarısız oldu."
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr "Yedeklenmiş sorgu:"
-#: db_routines.php:314
+#: db_routines.php:316
#, php-format
msgid "Routine %1$s has been modified."
msgstr "Yordam %1$s değiştirildi."
-#: db_routines.php:327
+#: db_routines.php:329
#, php-format
msgid "Routine %1$s has been created."
msgstr "Yordam %1$s oluşturuldu."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr "İsteğiniz işlenirken bir ya da daha fazla hata meydana geldi:"
-#: db_routines.php:379
+#: db_routines.php:381
msgid "Create routine"
msgstr "Yordam oluştur"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr "Yordamı düzenle"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -715,8 +713,8 @@ msgstr "İzleme aktif değil."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Bu görünüm en az bu satır sayısı kadar olur. Lütfen %sbelgeden%s yararlanın."
@@ -784,8 +782,8 @@ msgstr "Baskı görünümü"
msgid "Empty"
msgstr "Boşalt"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -858,9 +856,9 @@ msgstr "Güncellendi"
msgid "Status"
msgstr "Durum"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -954,8 +952,8 @@ msgstr "Döküm, %s dosyasına kaydedildi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Muhtemelen çok büyük dosya göndermeyi denediniz. Lütfen bu sınıra çözüm yolu "
"bulmak için %sbelgeden%s yararlanın."
@@ -1136,11 +1134,11 @@ msgstr "Seçili Kullanıcılar Kaldırılıyor"
msgid "Close"
msgstr "Kapat"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Düzenle"
@@ -1414,8 +1412,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm %"
-"s, %s tarihinde yayınlandı."
+"phpMyAdmin'in yeni sürümü mevcut ve yükseltmeyi düşünmelisiniz. Yeni sürüm "
+"%s, %s tarihinde yayınlandı."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:166
@@ -1673,6 +1671,214 @@ msgstr "Dakika"
msgid "Second"
msgstr "Saniye"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Yazı Tipi boyutu"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
+"aşıyor."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Gönderilen dosya sadece kısmen gönderildi."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Eksik geçici klasör."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Dosyayı diske yazma başarısız."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Dosya gönderme uzantısından dolayı durduruldu."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Dosya göndermede bilinmeyen hata oldu."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Gönderilen dosyayı taşıma hatası, [a@./Documentation."
+"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Tanımlı indeks yok!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "İndeksler"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Benzersiz"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Paketlendi"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Önemlilik"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Yorum"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birincil anahtar kaldırıldı"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "%s indeksi kaldırıldı"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün "
+"olabilir."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Veritabanları"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Hata"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d satır etkilendi."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d satır silindi."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d satır eklendi."
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "Son tablo kaydedilemedi"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "Son tablolar"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "Son tablolar yok"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s bu MySQL sunucusunda var."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Geçersiz veritabanı"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Geçersiz tablo adı"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%s tablosu %s olarak yeniden adlandırıldı"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "Tablo KA tercihleri kaydedilemedi"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "%s teması için geçerli resim yolu bulunamadı!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Önizleme mevcut değil."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Al"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "Varsayılan tema %s bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "%s teması bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "%s teması için tema yolu bulunamadı!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr "Tema"
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Bağlanamıyor: geçersiz ayarlar."
@@ -1686,8 +1892,8 @@ msgstr "%s'e Hoş Geldiniz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Muhtemelen bunun sebebi yapılandırma dosyasını oluşturmadığınız içindir. Bir "
"tane oluşturmak için %1$skur programcığı%2$s kullanmak isteyebilirsiniz."
@@ -1796,14 +2002,6 @@ msgstr "PBMS hatası"
msgid "PBMS connection failed:"
msgstr "PBMS bağlantısı başarısız:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Hata"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS, BLOB bilgisi alması başarısız:"
@@ -1856,11 +2054,6 @@ msgstr "Tablolar"
msgid "Data"
msgstr "Veri"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "İndeksler"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2143,9 +2336,77 @@ msgstr "Göndermek için dosyalar yok"
msgid "Execute"
msgstr "Çalıştır"
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Yazı Tipi boyutu"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "Her ikisi"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "Hiçbir yeri"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "Sol"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "Sağ"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "Açık"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "Kapandı"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "yapı"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "veri"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "yapı ve veri"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "tam eklemeler"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "genişletilmiş eklemeler"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "yukarıdakinin ikisi birden"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "yukarıdakinin hiçbiri"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2801,12 +3062,6 @@ msgstr "İçe ve dışa aktarma dizinlerini ve sıkıştırma seçeneklerini aya
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Veritabanları"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Veritabanlarının görüntü seçenekleri"
@@ -4446,78 +4701,6 @@ msgstr "pmadb kullanan boş phpMyAdmin denetim kullanıcısı parolası"
msgid "Incorrect IP address: %s"
msgstr "Yanlış IP adresi: %s"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "Her ikisi"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "Hiçbir yeri"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "Sol"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "Sağ"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "Açık"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "Kapandı"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "yapı"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "veri"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "yapı ve veri"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "Hızlı - yapılandırmak için sadece en az seçenekleri göster"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "Özel - yapılandırmak için tüm olası seçenekleri göster"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "Özel - yukarıdaki gibi ancak hızlı/özel seçimsiz"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "tam eklemeler"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "genişletilmiş eklemeler"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "yukarıdakinin ikisi birden"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "yukarıdakinin hiçbiri"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4583,25 +4766,6 @@ msgstr "Kapat"
msgid "Add an event"
msgstr "Yeni bir Olay ekle"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı "
-"başarısız oldu."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Sunucu yanıt vermiyor"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Ayrıntılar..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4669,9 +4833,9 @@ msgstr "Uzunluk/Değerler"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4718,11 +4882,6 @@ msgstr "Güvenlik türü"
msgid "SQL data access"
msgstr "SQL veri erişimi"
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Yorum"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr "Yordam parametreleri"
@@ -4783,6 +4942,25 @@ msgstr ""
"Yaklaşık olabilir. [a@./Documentation.html#faq3_11@Documentation]SSS 3.11[/"
"a]'e bakın"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"Yapılandırma dosyanız içinde tanımlanmış denetim kullanıcıları için bağlantı "
+"başarısız oldu."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Sunucu yanıt vermiyor"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ya da yerel MySQL sunucusunun soketi doğru olarak yapılandırılmadı)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Ayrıntılar..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4922,8 +5100,8 @@ msgstr ", @TABLE@ tablo adı olacaktır"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Bu değer %1$sstrftime%2$s kullanılarak yorumlanır, bu yüzden zaman "
"biçimlendirme dizgisi kullanabilirsiniz. İlave olarak aşağıdaki dönüşümler "
@@ -5698,8 +5876,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
"%sPrimeBase XT Ana Sayfasında%s PBXT hakkında belge ve daha fazla bilgi "
"bulunabilir."
@@ -6007,47 +6185,6 @@ msgstr "Görünümler"
msgid "Export contents"
msgstr "İçerikleri dışa aktar"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Gönderilen dosya, php.ini içindeki upload_max_filesize yönergesini aşıyor."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Gönderilen dosya, HTML formu içinde belirlenmiş MAX_FILE_SIZE yönergesini "
-"aşıyor."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Gönderilen dosya sadece kısmen gönderildi."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Eksik geçici klasör."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Dosyayı diske yazma başarısız."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Dosya gönderme uzantısından dolayı durduruldu."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Dosya göndermede bilinmeyen hata oldu."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Gönderilen dosyayı taşıma hatası, [a@./Documentation."
-"html#faq1_11@Documentation]SSS 1.11[/a]'e bakın"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6065,6 +6202,42 @@ msgstr "SQL sonucu"
msgid "Generated by"
msgstr "Üreten:"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını "
+"değiştirin"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Veritabanına git"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "ayarlar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Tabloya git"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Görünüme git"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6131,42 +6304,6 @@ msgstr "Sütun adları"
msgid "This plugin does not support compressed imports!"
msgstr "Bu eklenti sıkıştırılmış içe aktarım dosyalarını desteklemez!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "Aşağıdaki yapılar ya oluşturuldu ya da değiştirildi. Buyurun:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "İsmine tıklayarak yapının içeriklerini görüntüleyin"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-"Uyan \"Seçenekler\" bağlantısına tıklayarak bunun herhangi bir ayarını "
-"değiştirin"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Aşağıdaki \"Yapı\" bağlantısıyla bunun yapısını düzenleyin"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Veritabanına git"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "ayarlar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Tabloya git"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Görünüme git"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "Yüzdeleri doğru ondalık olarak içe aktar (örn. %12.00'ı .12'ye)"
@@ -6191,42 +6328,6 @@ msgstr ""
"Belirlenmiş XML dosyası ya kusurlu ya da tamamlanmamış. Lütfen sorunu "
"düzeltin ve tekrar deneyin."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Tanımlı indeks yok!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Benzersiz"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Paketlendi"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Önemlilik"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birincil anahtar kaldırıldı"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "%s indeksi kaldırıldı"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"İndeks %1$s ve %2$s eşit görünüyor ve bunlardan birinin silinmesi mümkün "
-"olabilir."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6237,24 +6338,6 @@ msgstr "Yok"
msgid "Convert to Kana"
msgstr "Kana'ya dönüştür"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d satır etkilendi."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d satır silindi."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d satır eklendi."
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "Buradan"
@@ -6493,18 +6576,6 @@ msgstr "Rehber çerçeveyi yeniden yükle"
msgid "This format has no options"
msgstr "Bu biçim seçeneğe sahip değil"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "Son tablo kaydedilemedi"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "Son tablolar"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "Son tablolar yok"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "TAMAM değil"
@@ -6889,6 +6960,61 @@ msgstr "Farkı"
msgid "Target database"
msgstr "Hedef veritabanı"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Temizle"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "Sütun"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL sorgusunu işaretle"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Mevcut aynı ismin işaretlemesini değiştir"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Pencere dışından bu sorgunun üzerine yazma"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Sınırlayıcı"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorguyu burada tekrar göster "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Sadece göster"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Metin dosyasının yeri"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web sunucusu gönderme dizini"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6952,61 +7078,6 @@ msgstr "Geçersiz Tanımlayıcı"
msgid "Unknown Punctuation String"
msgstr "Bilinmeyen Noktalama İşareti Dizgisi"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s sunucusu üzerinde SQL sorgusunu/sorgularını çalıştır"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s veritabanı üzerinde SQL sorgusunu/sorgularını çalıştır"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Temizle"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "Sütun"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL sorgusunu işaretle"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Bütün kullanıcıların bu işaretlemeye erişimlerine izin ver"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Mevcut aynı ismin işaretlemesini değiştir"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Pencere dışından bu sorgunun üzerine yazma"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Sınırlayıcı"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorguyu burada tekrar göster "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Sadece göster"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Metin dosyasının yeri"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web sunucusu gönderme dizini"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7016,48 +7087,6 @@ msgstr ""
"SQL onaylayıcısı başlatılamadı. %sBelgede%s anlatıldığı gibi lütfen gerekli "
"PHP uzantılarının kurulu olduğunu kontrol edin."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu depolama motoru için ayrıntılı durum bilgisi mevcut değil."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s bu MySQL sunucusunda var."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s bu MySQL sunucusu için etkisizleştirildi."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL sunucusu %s depolama motorunu desteklemez."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Geçersiz veritabanı"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Geçersiz tablo adı"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s tablo adını %2$s tablo adına değiştirme hatası"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%s tablosu %s olarak yeniden adlandırıldı"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "Tablo KA tercihleri kaydedilemedi"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Tablo boş olarak görünüyor!"
@@ -7178,38 +7207,6 @@ msgstr "PARTITION tanımı"
msgid "+ Add a value"
msgstr "+ Yeni bir değer ekle"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "%s teması için geçerli resim yolu bulunamadı!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Önizleme mevcut değil."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Al"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "Varsayılan tema %s bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "%s teması bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "%s teması için tema yolu bulunamadı!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr "Tema"
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8257,8 +8254,8 @@ msgstr "Kullanıcılarla aynı isimlerde olan veritabanlarını kaldır."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Not: phpMyAdmin kullanıcıların yetkilerini doğrudan MySQL'in yetki "
"tablolarından alır. Bu tabloların içerikleri, eğer elle değiştirildiyse "
@@ -9804,9 +9801,9 @@ msgid ""
"protection may not be reliable if your IP belongs to an ISP where thousands "
"of users, including you, are connected to."
msgstr ""
-"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- %"
-"sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi%s. "
-"Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
+"Eğer bunun gerekli olduğunu düşünüyorsanız, ilave koruma ayarları kullanın- "
+"%sanamakine kimlik doğrulaması%s ayarları ve %sgüvenilir proksiler listesi"
+"%s. Ancak, IP-tabanlı koruma eğer IP'niz, sizinde dahil olduğunuz binlerce "
"kullanıcıya sahip ve bağlı olduğunuz bir ISS'e aitse güvenilir olmayabilir."
#: setup/lib/index.lib.php:268
@@ -9821,8 +9818,8 @@ msgstr ""
"[kbd]Yapılandırma[/kbd] kimlik doğrulaması türünü ayarladınız ve buna "
"otomatik oturum açma için kullanıcı adı ve parola dahildir, canlı "
"anamakineler için istenmeyen bir seçenektir. phpMyAdmin URL'nizi bilen veya "
-"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. %"
-"sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
+"tahmin eden herhangi biri doğrudan phpMyAdmin panelinize erişebilir. "
+"%sKimlik doğrulama türünü%s [kbd]tanımlama bilgisi[/kbd] ya da [kbd]http[/"
"kbd] olarak ayarlayın."
#: setup/lib/index.lib.php:270
diff --git a/po/tt.po b/po/tt.po
index 186c84410f..e2b4c84812 100644
--- a/po/tt.po
+++ b/po/tt.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-22 02:25+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: tatarish \n"
+"Language: tt\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: tt\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Ezläw"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Ezläw"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Äydä"
@@ -120,7 +120,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%s biremlege beterelde."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Biremlek açıqlaması:"
@@ -130,9 +130,9 @@ msgstr "Biremlek açıqlaması:"
msgid "Table comments"
msgstr "Tüşämä açıqlaması"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "Tüşämä açıqlaması"
msgid "Column"
msgstr "Alan iseme"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "Alan iseme"
msgid "Type"
msgstr "Töre"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "Bonı belän bäyläneş:"
msgid "Comments"
msgstr "Açıqlama"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "Açıqlama"
msgid "No"
msgstr "Yuq"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,82 +261,82 @@ msgstr "Saylanunı Töşer"
msgid "The database name is empty!"
msgstr "Biremlek iseme buş!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "\"%s\" biremlege \"%s\" itep ataldı"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Database %s has been copied to %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Biremlekne bolay atap quy"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Ämer"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Biremlekne bolay atap quy"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "%s biremlege beterelde."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
msgid "Drop the database (DROP)"
msgstr "Biremleklär yuq"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Biremlekne boña kübäyt"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Tözeleşen genä"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Tözeleşen dä, eçtälegen dä"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Eçtälegen genä"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Kübäytü aldınnan CREATE DATABASE östise"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "%s östäw"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "\"AUTO_INCREMENT\" bäyäsen östise"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Çikläwlär östise"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Kübäytelgän biremlekkä küçäse"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -346,7 +345,7 @@ msgstr "Kübäytelgän biremlekkä küçäse"
msgid "Collation"
msgstr "Tezü cayı"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -358,7 +357,7 @@ msgstr ""
"Bäyläneştä torğan tüşämä belän eşläp bulmas, östämä eşli-alu sünek tora. Anı "
"qabızu öçen, %sbonda çirtäse%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -510,103 +509,103 @@ msgstr "%s biremlegenä SQL-soraw:"
msgid "Submit Query"
msgstr "Sorawnı Yulla"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL-sorawıñ uñışlı eşkärtelde"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Eçke funksílar eşlätterergä birä."
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL sorawğa buş cawap, yäğni nül kertem qaytarttı."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL qaytarışı:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Proseslar"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Bu biremlektä ber genä dä tüşämä yuq."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
msgid "Export of routine %s"
msgstr "Biremdän alu"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Serverdäge \"%s\" digän tezeleş yaraqsız"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "\"%s\" atlı tüşämä beterelde"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
msgid "Routine %1$s has been created."
msgstr "\"%s\" atlı tüşämä beterelde"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
msgid "Create routine"
msgstr "Server söreme"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -741,8 +740,8 @@ msgstr ""
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -810,8 +809,8 @@ msgstr "Bastıru küreneşe"
msgid "Empty"
msgstr "Buşat"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -892,9 +891,9 @@ msgstr ""
msgid "Status"
msgstr "Torış"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -993,8 +992,8 @@ msgstr "Eçtälege \"%s\" biremenä saqlandı."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1174,11 +1173,11 @@ msgstr "Saylanğan qullanuçı beterü"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tözätü"
@@ -1803,6 +1802,218 @@ msgstr "totıla"
msgid "Second"
msgstr "sekund sayın"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+#, fuzzy
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr "Törle buluı bar. YBS 3.11 qarísı"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Açqıç bilgelänmäde!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Tezeşlär"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Qabatsız"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Qabatlanu sanı"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+#, fuzzy
+msgid "Comment"
+msgstr "Açıqlama"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Töp açqıç beterelde"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "\"%s\" digän tezeş salındı"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Biremleklär"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Xata"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "Kertemnär sayladı"
+msgstr[1] "Kertemnär sayladı"
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "No rows selected"
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "Kertemnär sayladı"
+msgstr[1] "Kertemnär sayladı"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: \"%1$s\""
+msgid "Could not save recent table"
+msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+msgid "Recent tables"
+msgstr "Berär genä dä tüşämä yuq"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+msgid "There are no recent tables"
+msgstr "Tüşämä tikşerü"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Bu MySQL serverdä %s bar."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Bu MySQL server %s saqlaw enginen totmí."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Yaraqsız biremlek"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Tüşämä adı yaraqsız"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "bonı sayla"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "%s digän töp tışlaw tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "%s digän tışlaw tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Totaşa almím: yaraqsız köyläwlär."
@@ -1816,8 +2027,8 @@ msgstr "%s siña İsäñme di"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1922,14 +2133,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "MySQL-totaşunıñ tezü cayı"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Xata"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1982,11 +2185,6 @@ msgstr "Tüşämä"
msgid "Data"
msgstr "Eçtälek"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Tezeşlär"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2274,8 +2472,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Yabılmağan cäyä"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+#, fuzzy
+msgid "structure"
+msgstr "Tözeleş"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Tözeleşen dä, eçtälegen dä"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Tulayım östise"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Kiñäytep östise"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2950,12 +3225,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Biremleklär"
-
#: libraries/config/messages.inc.php:178
#, fuzzy
msgid "Databases display options"
@@ -4504,87 +4773,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Yabılmağan cäyä"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-#, fuzzy
-msgid "structure"
-msgstr "Tözeleş"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Tözeleşen dä, eçtälegen dä"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Tulayım östise"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Kiñäytep östise"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4652,23 +4840,6 @@ msgstr ""
msgid "Add an event"
msgstr "Yaña qullanuçı östäw"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Bu server endäşmi"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4741,9 +4912,9 @@ msgstr "Ozınlıq/Bäyä*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4801,12 +4972,6 @@ msgstr "Soraw töre"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-#, fuzzy
-msgid "Comment"
-msgstr "Açıqlama"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4868,6 +5033,23 @@ msgid ""
"3.11[/a]"
msgstr "Törle buluı bar. YBS 3.11 qarísı"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Bu server endäşmi"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(yä cirle MySQL-server soketı döres köylänmägän ide)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5033,8 +5215,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5787,8 +5969,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6106,43 +6288,6 @@ msgstr "Qaraş"
msgid "Export contents"
msgstr "Çığaru ısulı"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-#, fuzzy
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr "Törle buluı bar. YBS 3.11 qarísı"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6160,6 +6305,42 @@ msgstr "SQL qaytarışı"
msgid "Generated by"
msgstr "Ürçätkeç:"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+#, fuzzy
+msgid "Go to database"
+msgstr "Biremleklär yuq"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+#, fuzzy
+msgid "Go to table"
+msgstr "Biremleklär yuq"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6222,42 +6403,6 @@ msgstr "Alan iseme"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-#, fuzzy
-msgid "Go to database"
-msgstr "Biremleklär yuq"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-#, fuzzy
-msgid "Go to table"
-msgstr "Biremleklär yuq"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6282,40 +6427,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Açqıç bilgelänmäde!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Qabatsız"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Qabatlanu sanı"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Töp açqıç beterelde"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "\"%s\" digän tezeş salındı"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6328,29 +6439,6 @@ msgstr "Buş"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "Kertemnär sayladı"
-msgstr[1] "Kertemnär sayladı"
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "No rows selected"
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "Kertemnär sayladı"
-msgstr[1] "Kertemnär sayladı"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6593,22 +6681,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Bu tözeleşeneñ köyläneşe yuq"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: \"%1$s\""
-msgid "Could not save recent table"
-msgstr "Töp köyläneşen yökläp bulmadı: \"%1$s\""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-msgid "Recent tables"
-msgstr "Berär genä dä tüşämä yuq"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-msgid "There are no recent tables"
-msgstr "Tüşämä tikşerü"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "OK tügel"
@@ -6998,6 +7070,64 @@ msgstr ""
msgid "Target database"
msgstr "Biremlektä ezläw: "
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "%s digän serverdä SQL-soraw eşlätü"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "%s biremlegendä eşlätäse SQL-soraw"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+#, fuzzy
+msgid "Clear"
+msgstr "Täqwim"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Alan iseme"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Bu SQL-sorawğa tamğa quy"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Şulay uq atalğan bitbilgelärne almaştırası"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Bu sorawnı qabat kürsätäse"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Kürep kenä"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "SQL-ämerlege belän birem yökläw"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "web-server'neñ yökläw törgäge"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7060,114 +7190,14 @@ msgstr "Tanıtması Yaraqsız"
msgid "Unknown Punctuation String"
msgstr "Unknown Punctuation String"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "%s digän serverdä SQL-soraw eşlätü"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "%s biremlegendä eşlätäse SQL-soraw"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-#, fuzzy
-msgid "Clear"
-msgstr "Täqwim"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Alan iseme"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Bu SQL-sorawğa tamğa quy"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Bu tamğanı bar qullanuçığa da ireşüle itäse"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Şulay uq atalğan bitbilgelärne almaştırası"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Bu sorawnı, täräzä tışında bulğanı belän almaştırası tügel"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Bu sorawnı qabat kürsätäse"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Kürep kenä"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "SQL-ämerlege belän birem yökläw"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "web-server'neñ yökläw törgäge"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
"The SQL validator could not be initialized. Please check if you have "
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında %"
-"squllanmada%s uqıp bula."
-
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Bu saqlaw engine öçen xälät turında centekle belem yuq."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Bu MySQL serverdä %s bar."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "Bu MySQL serverdä %s sünderelgän bulğan."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Bu MySQL server %s saqlaw enginen totmí."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Yaraqsız biremlek"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Tüşämä adı yaraqsız"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s atlı tüşämä adın %2$s itep üzgärtep bulmadı"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "\"%s\" tüşämäse \"%s\" itep ataldı"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
+"SQL-tikşerüçe köylänmägän. Bu kiräk bulğan php-yöklämäne köyläw turında "
+"%squllanmada%s uqıp bula."
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
@@ -7298,38 +7328,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Yaña qullanuçı östäw"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "%s digän tışlaw sürätläre urınlaşqan yul tabılmadı!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "bonı sayla"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "%s digän töp tışlaw tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "%s digän tışlaw tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "%s digän tışlaw urınlaşqan yul tabılmadı!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8421,8 +8419,8 @@ msgstr "Bu qullanuçılar kebek atalğan biremleklärne beteräse."
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Beläse: MySQL-serverneñ eçke tüşämä eçennän alınğan xoquqlar bu. Server "
"qullana torğan xoquqlar qul aşa üzgärtelgän bulsa, bu tüşämä eçtälege "
diff --git a/po/ug.po b/po/ug.po
index 53bd2ebf11..f91fa93466 100644
--- a/po/ug.po
+++ b/po/ug.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-08-26 11:59+0200\n"
"Last-Translator: \n"
"Language-Team: Uyghur \n"
+"Language: ug\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ug\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,13 +47,13 @@ msgstr ""
msgid "Search"
msgstr "ئىزدەش"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -66,18 +66,18 @@ msgstr "ئىزدەش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "ئىجرا قىلىش"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "ساندان ئىزاھاتى:"
@@ -132,9 +132,9 @@ msgstr "ساندان ئىزاھاتى:"
msgid "Table comments"
msgstr "جەدۋەل ئىزاھى"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -143,12 +143,12 @@ msgstr "جەدۋەل ئىزاھى"
msgid "Column"
msgstr "سۆزلەم"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -158,9 +158,9 @@ msgstr "سۆزلەم"
msgid "Type"
msgstr "تۈرى"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -198,13 +198,12 @@ msgstr "ئۇلانما"
msgid "Comments"
msgstr "ئىزاھلار"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -215,17 +214,17 @@ msgstr "ئىزاھلار"
msgid "No"
msgstr "يوق"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -262,79 +261,79 @@ msgstr "تاللاشنى قالدۇرۇش"
msgid "The database name is empty!"
msgstr "ساندان ئىسمىنى بوش قويماڭ!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "ساندان ئىسمى %s غا ئۆزگەرتىلدى %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "ساندان %s غا كۆچۈرۈلدى %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "بۇيرۇق"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "ئۆزگەرتىلگەن ساندان ئىسمى"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "ساندان %s ئۆچۈرۈلدى."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "كۆچۈرۈلگەن ساندان"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "كۆچۈرۈلگەن ساندان"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "تۈزىلىشىنىلا"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "تۈزۈلىشى ۋە ئۇچۇر"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "ئۇچۇرنىلا"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "ئاندىنقى سانداننى كۆپەيتىپ ساندان قۇرۇش"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "قوشۇلغىنى %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قوشۇش"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "مەجبۇرى قوشۇش"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -343,16 +342,16 @@ msgstr "كۆپەيتىلگەن ساندانغا كۆچۈش"
msgid "Collation"
msgstr "تاسقاش"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
-"sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
+"%sبۇ يەرنى كۆرۈڭ%s."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Display PDF schema"
msgid "Edit or export relational schema"
@@ -499,104 +498,104 @@ msgstr "SQL ئىجرا بولۋاتقان ساندان %s:"
msgid "Submit Query"
msgstr "تاپشۇرۇش"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL بۇيرىقى غەلبىلىك بىجىرىلدى"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL جاۋابى:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
msgid "Error in processing request"
msgstr ""
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "سانداندا جەدۋەل يوق"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "ئۈنۈمسىز مۇلازىمىتېر :%s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "View %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "%s كۆرۈنمە ئۆچۈرۈلدى"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "%1$s ساندان غەلبىلىك قۇرۇلدى"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create version"
msgid "Create routine"
msgstr "نەشىرنى قۇىماق"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Routines"
msgid "Edit routine"
msgstr "دائىملىق"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -727,8 +726,8 @@ msgstr "ئىزلاش ئاكتىپ ئەمەس"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "بۇ كۆرسەتمە كامىدا ئىگە بولغان سەپ، %sھۆججەت%s."
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -795,8 +794,8 @@ msgstr "بېسىپ كۆرسىتىش"
msgid "Empty"
msgstr "تازىلاش"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -871,9 +870,9 @@ msgstr "يېڭلاش"
msgid "Status"
msgstr "ھالەت"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -967,8 +966,8 @@ msgstr "%s ھۆججىتىدە ساقلاندى."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"سىز يوللىماقچى بولغان ھۆججەت بەك چوڭكەن، %sياردەم%s ھۆججىتىدىن ھەل قىلىش "
"چارىسىنى كۆرۈڭ."
@@ -1157,11 +1156,11 @@ msgstr ""
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تەھىرلەش"
@@ -1730,6 +1729,219 @@ msgstr "مىنۇت"
msgid "Second"
msgstr "سېكنۇت"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
+"ئېشىپ كەتتى."
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "index قىممىتى بەلگىلەنمىگەن!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "تېزىسلار"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "بىردىنبىر"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "ئىخچام"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "تۈپ سان"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "ئىزاھات"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "ئۆچۈرۈلگەن تېزىسلار %s"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "ساندان"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "خاتالىق"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d row affected."
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d row deleted."
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d قۇر قوشۇلدى."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not load default configuration from: %1$s"
+msgid "Could not save recent table"
+msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "Recent tables"
+msgstr "ئىزلانغان جەدۋەل"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "Tracked tables"
+msgid "There are no recent tables"
+msgstr "ئىزلانغان جەدۋەل"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس."
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "ئۈنۈمسىز ساندان"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "No valid image path for theme %s found!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "ئالدىن كۆرگىنى بولمايدۇ."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "ئېلىش"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "تېما %s تېپىلمىدى!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "ماۋزۇ %s تېپىلمىدى."
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "ئۇلىنالمىدى: ئۈنۈمسىز تەڭشەك."
@@ -1743,11 +1955,11 @@ msgstr "%s خۇش كەلدىڭىز"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
#: libraries/auth/config.auth.lib.php:115
msgid ""
@@ -1851,14 +2063,6 @@ msgstr "PBMS خاتالىقى"
msgid "PBMS connection failed:"
msgstr "PBMS ئۇلىنالمىدى:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "خاتالىق"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1911,11 +2115,6 @@ msgstr ""
msgid "Data"
msgstr "سانلىق مەلۇمات"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "تېزىسلار"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2195,9 +2394,79 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "خەتنىڭ چوڭ-كىچىكلىكى"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr ""
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "تۈزۈلىشى ۋە ئۇچۇر"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr ""
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr ""
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2842,12 +3111,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "ساندان"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4347,80 +4610,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr ""
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "تۈزۈلىشى ۋە ئۇچۇر"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr ""
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr ""
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4489,23 +4678,6 @@ msgstr ""
msgid "Add an event"
msgstr "مەجبۇرى قوشۇش"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "مۇلازىمىتېردا ئىنكاس يوق"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "تەپسىلاتلار..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4580,9 +4752,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4637,11 +4809,6 @@ msgstr "تۈرگە قايتىش"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "ئىزاھات"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4706,6 +4873,23 @@ msgstr ""
"ئېنىقسىزلىك بولۇشى مۇمكىن. [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a] غا قاراڭ."
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "تەڭشەك ھۆججىتى ئىچىدىكى ئىشلەنكۈچى ئۇلۈنما كونتىرولى مەغلۇب بولدى."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "مۇلازىمىتېردا ئىنكاس يوق"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(يەرلىك MySQL مۇلازىمىتېرى توغرا تەڭشەلمىگەن)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "تەپسىلاتلار..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4865,8 +5049,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5593,8 +5777,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5901,46 +6085,6 @@ msgstr "قاراش"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"سىز يۈكلىگەن ھۆججەت php.ini نىڭ ئىچىدىكى upload_max_filesize چەكلىمىسىدىن "
-"ئېشىپ كەتتى."
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "سز يۈكلىگەن ھۆججەت HTML نىڭ MAX_FILE_SIZE چېكىدىن ئېشىپ كەتتى."
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "سىز يۈكلىگەن ھۆججەتنىڭ پەقەت بىر قىسىمىلا يۈكلەندى."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "ۋاقىتلىق ھۆججەت ساقلاش مۇندەرىجىسى تىپىلمىدى."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ھۆججەتنى دېسكىغا يىزىشتا خاتالىق كۆرۈلدى."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "كېڭەيتىلمە ئىسمى بۇنداق ھۆججەتلەرنى يوللاشقا بولمايدۇ."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "ھۆججەت يۈكلەشتە ئېنىقسىز خاتالىق كۆرۈلدى."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5958,6 +6102,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6019,40 +6197,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6077,42 +6221,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "index قىممىتى بەلگىلەنمىگەن!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "بىردىنبىر"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "ئىخچام"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "تۈپ سان"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "ئاساسىي قىممەت ئۆچۈرۈلدى"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "ئۆچۈرۈلگەن تېزىسلار %s"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6123,24 +6231,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d row affected."
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d row deleted."
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d قۇر قوشۇلدى."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6381,24 +6471,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not load default configuration from: %1$s"
-msgid "Could not save recent table"
-msgstr "تەڭشەك ئەندىزى %1$s كىرگۈزىلمىدى."
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "Recent tables"
-msgstr "ئىزلانغان جەدۋەل"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "Tracked tables"
-msgid "There are no recent tables"
-msgstr "ئىزلانغان جەدۋەل"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6780,57 +6852,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6886,6 +6907,57 @@ msgstr "يىزىق ھۆججەتنىڭ ئورنى"
msgid "web server upload directory"
msgstr "مۇلازىمىتېردىكى يۈكلەش مۇندەرىجىسى"
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6893,48 +6965,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "بۇ ساقلىغۇچقا مۇناسىۋەتلىك باشقا ئۇچۇرلار مەۋجۇت ئەمەس."
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولىدۇ."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s نى بۇ MySQL مۇلازىمىتېرىدا ئىشلىتىشكە بولمايدۇ."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "بۇ MySQL مۇلازىمىتېرى %s نى قوللىمايدۇ."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "ئۈنۈمسىز ساندان"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "ئۈنۈمسىز جەدۋەل ئىسمى"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىشتە خاتالىق كۆرۈلدى."
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "%1$s بۇ جەدۋەل ئىسمىنى %2$s غا ئۆزگەرتىش غەلبىلىك بولدى."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7039,38 +7069,6 @@ msgstr ""
msgid "+ Add a value"
msgstr ""
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "No valid image path for theme %s found!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "ئالدىن كۆرگىنى بولمايدۇ."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "ئېلىش"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "ئۇسلۇپ ئەندىزسى %s تېپىلمىدى!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "تېما %s تېپىلمىدى!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "ماۋزۇ %s تېپىلمىدى."
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -7326,8 +7324,8 @@ msgid ""
"The phpMyAdmin configuration storage is not completely configured, some "
"extended features have been deactivated. To find out why click %shere%s."
msgstr ""
-"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن %"
-"sبۇ يەرنى كۆرۈڭ%s."
+"ئالاقىدار جەدۋەللەرنىڭ قوشۇمچە ئىقتىدارى پائالسىز. سەۋەبىنى ئېنىقلاش ئۈچۈن "
+"%sبۇ يەرنى كۆرۈڭ%s."
#: main.php:314
msgid ""
@@ -8058,8 +8056,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/uk.po b/po/uk.po
index 9b1e2fd070..f4dc958a1c 100644
--- a/po/uk.po
+++ b/po/uk.po
@@ -3,16 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-17 10:55+0200\n"
"Last-Translator: Michal Čihař \n"
"Language-Team: ukrainian \n"
+"Language: uk\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: uk\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
+"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
"X-Generator: Pootle 2.0.5\n"
#: browse_foreigners.php:35 browse_foreigners.php:53
@@ -46,13 +46,13 @@ msgstr ""
msgid "Search"
msgstr "Шукати"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -65,18 +65,18 @@ msgstr "Шукати"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "Вперед"
@@ -123,7 +123,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "Базу даних %1$s створено."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Коментар бази даних: "
@@ -133,9 +133,9 @@ msgstr "Коментар бази даних: "
msgid "Table comments"
msgstr "Коментар до таблиці"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Коментар до таблиці"
msgid "Column"
msgstr "Стовпчик"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Стовпчик"
msgid "Type"
msgstr "Тип"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Лінки до"
msgid "Comments"
msgstr "Коментарі"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Коментарі"
msgid "No"
msgstr "Ні"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,79 +262,79 @@ msgstr "Зняти всі відмітки"
msgid "The database name is empty!"
msgstr "Ім'я бази даних порожнє!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "Базу даних %s перейменовано в %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "Базу даних %s скопійовано в %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Перейменувати базу даних в"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Команда"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "Видалити базу даних"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "Базу даних %s знищено."
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "Знищити базу даних (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Копіювати базу даних в"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Лише структуру"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Структуру і дані"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Лише дані"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Перед копіюванням створити базу даних (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "Додати %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "Додати AUTO_INCREMENT значення"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Додати constraints"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Перейти до скопійованої бази даних"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -344,7 +343,7 @@ msgstr "Перейти до скопійованої бази даних"
msgid "Collation"
msgstr "Порівняння"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -353,7 +352,7 @@ msgstr ""
"Сховище конфігурації phpMyAdmin деактивовано. Для того, щоб довідатись чому, "
"натисніть %sтут%s."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "Редагувати або експортувати схему зв'язків"
@@ -500,14 +499,14 @@ msgstr "SQL-запит до БД %s:"
msgid "Submit Query"
msgstr "Виконати запит"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "Ваш SQL-запит було успішно виконано"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
@@ -515,90 +514,90 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL повернула пустий результат (тобто нуль рядків)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "Відповідь MySQL: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processing Request"
msgid "Error in processing request"
msgstr "Обробка запиту"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "В БД не виявлено таблиць."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, php-format
msgid "Export of routine %s"
msgstr ""
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, php-format
msgid "Invalid routine type: \"%s\""
msgstr ""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Таблицю %s було знищено"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "Базу даних %1$s створено."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create User"
msgid "Create routine"
msgstr "Створити користувача"
-#: db_routines.php:383
+#: db_routines.php:385
msgid "Edit routine"
msgstr ""
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -730,8 +729,8 @@ msgstr "Трекінг не активний."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -798,8 +797,8 @@ msgstr "Версія для друку"
msgid "Empty"
msgstr "Очистити"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -876,9 +875,9 @@ msgstr ""
msgid "Status"
msgstr "Статус"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -972,8 +971,8 @@ msgstr "Dump збережено у файл %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1143,11 +1142,11 @@ msgstr "Видалити відмічених користувачів"
msgid "Close"
msgstr ""
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Редагувати"
@@ -1696,6 +1695,212 @@ msgstr "Хвилина"
msgid "Second"
msgstr "Секунда"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr ""
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr ""
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr ""
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr ""
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr ""
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr ""
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Індекс не визначено!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Індекси"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Унікальне"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr ""
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Кількість елементів"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr ""
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Первинний ключ було знищено"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "Індекс %s було знищено"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Бази Даних"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Помилка"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] ""
+msgstr[1] ""
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr ""
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Select Tables"
+msgid "Recent tables"
+msgstr "Вибрати таблиці"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr ""
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr ""
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr ""
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr ""
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr ""
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr ""
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "Таблицю %s було перейменовано в %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr ""
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr ""
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr ""
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr ""
@@ -1709,8 +1914,8 @@ msgstr "Ласкаво просимо до %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
#: libraries/auth/config.auth.lib.php:115
@@ -1813,14 +2018,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr ""
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Помилка"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -1873,11 +2070,6 @@ msgstr "Таблиць"
msgid "Data"
msgstr "Дані"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Індекси"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2156,8 +2348,78 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Unclosed quote"
+msgid "Closed"
+msgstr "Не закриті лапки"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr ""
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "структура і дані"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "повні вставки"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "розширені вставки"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
msgstr ""
#: libraries/config/FormDisplay.class.php:83
@@ -2792,12 +3054,6 @@ msgstr ""
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Бази Даних"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr ""
@@ -4271,80 +4527,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Unclosed quote"
-msgid "Closed"
-msgstr "Не закриті лапки"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr ""
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "структура і дані"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "повні вставки"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "розширені вставки"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4411,23 +4593,6 @@ msgstr ""
msgid "Add an event"
msgstr "Додати нового користувача"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4500,9 +4665,9 @@ msgstr "Довжини/Значення*"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4559,11 +4724,6 @@ msgstr "Тип запиту"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr ""
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4624,6 +4784,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4764,8 +4941,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5481,8 +5658,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5788,42 +5965,6 @@ msgstr ""
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr ""
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr ""
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr ""
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr ""
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr ""
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5841,6 +5982,40 @@ msgstr "SQL result"
msgid "Generated by"
msgstr "Згенеровано"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5902,40 +6077,6 @@ msgstr "Назви колонок"
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -5958,40 +6099,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Індекс не визначено!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Унікальне"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr ""
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Кількість елементів"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Первинний ключ було знищено"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "Індекс %s було знищено"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6004,27 +6111,6 @@ msgstr "Немає"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] ""
-msgstr[1] ""
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] ""
-msgstr[1] ""
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6267,20 +6353,6 @@ msgstr ""
msgid "This format has no options"
msgstr "Цей формат не має опцій"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr ""
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Select Tables"
-msgid "Recent tables"
-msgstr "Вибрати таблиці"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr ""
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "не OK"
@@ -6670,6 +6742,63 @@ msgstr ""
msgid "Target database"
msgstr ""
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "Виконати SQL запит(и) до БД %s"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Назви колонок"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Закладка на даний SQL-запит"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Не перекривати цей запит в інших вікнах"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr ""
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " Показати даний запит знову "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Лише перегляд"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "вкажіть розташування текстового файлу"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6734,63 +6863,6 @@ msgstr "Некоректний ідентифікатор"
msgid "Unknown Punctuation String"
msgstr "Невідомий символ пунктуації"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "Виконати SQL запит(и) до БД %s"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Назви колонок"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Закладка на даний SQL-запит"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Не перекривати цей запит в інших вікнах"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr ""
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " Показати даний запит знову "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Лише перегляд"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "вкажіть розташування текстового файлу"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "каталог веб-сервера для завантаження файлів (upload directory)"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6800,48 +6872,6 @@ msgstr ""
"Не можу запустити перевірку SQL. Прошу проконтролювати чи інстальовані "
"необхідні PHP extensions як описано в %sдокументації%s."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr ""
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr ""
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr ""
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr ""
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr ""
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "Таблицю %s було перейменовано в %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -6883,8 +6913,8 @@ msgid ""
"For a list of available transformation options and their MIME type "
"transformations, click on %stransformation descriptions%s"
msgstr ""
-"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть %"
-"sописи перетворень%s"
+"Щоб отримати список можливих опцій і їх MIME-type перетворень, натисніть "
+"%sописи перетворень%s"
#: libraries/tbl_properties.inc.php:144
msgid "Transformation options"
@@ -6966,38 +6996,6 @@ msgstr ""
msgid "+ Add a value"
msgstr "Додати нового користувача"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr ""
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr ""
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr ""
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8052,8 +8050,8 @@ msgstr "Усунути бази даних, які мають такі ж наз
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"Примітка: phpMyAdmin отримує права користувачів безпосередньо з таблиці прав "
"MySQL. Зміст цієї таблиці може відрізнятися від прав, які використовуються "
@@ -10296,8 +10294,8 @@ msgstr ""
#~ "Query statistics: Since its startup, %s queries have been sent to "
#~ "the server."
#~ msgstr ""
-#~ "Статистика запитів: З моменту запуску, до сервера було надіслано %"
-#~ "s запитів."
+#~ "Статистика запитів: З моменту запуску, до сервера було надіслано "
+#~ "%s запитів."
#~ msgid "Chart generated successfully."
#~ msgstr "Права успішно перезавантажено."
diff --git a/po/ur.po b/po/ur.po
index 819ae5d249..d4f7932509 100644
--- a/po/ur.po
+++ b/po/ur.po
@@ -6,14 +6,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-04-23 08:37+0200\n"
"Last-Translator: Mehbooob Khan \n"
"Language-Team: Urdu \n"
+"Language: ur\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: ur\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Pootle 2.0.5\n"
@@ -47,13 +47,13 @@ msgstr ""
msgid "Search"
msgstr "تلاش"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -66,18 +66,18 @@ msgstr "تلاش"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "جائیں"
@@ -125,7 +125,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr "کوائفیہ $1%s بن گئی ہے۔"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "کوائفیہ تبصرہ:"
@@ -135,9 +135,9 @@ msgstr "کوائفیہ تبصرہ:"
msgid "Table comments"
msgstr "جدول تبصرے"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -148,12 +148,12 @@ msgstr "جدول تبصرے"
msgid "Column"
msgstr "کالم"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -163,9 +163,9 @@ msgstr "کالم"
msgid "Type"
msgstr "قِسم"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -203,13 +203,12 @@ msgstr "ربط بطرف"
msgid "Comments"
msgstr "تبصرہ"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -220,17 +219,17 @@ msgstr "تبصرہ"
msgid "No"
msgstr "نہیں"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -267,79 +266,79 @@ msgstr "تمام انتخاب ختم کریں"
msgid "The database name is empty!"
msgstr "کوائفیہ نام خالی ہے!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "کوائفیہ %s() نام %s میں تبدیل ہوچکا ہے"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "کوائفیہ %s نام %s میں نقل کیا جاچکا ہے"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "کوائفیہ نام بدلیں"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "حکم"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "کوائفیہ ہٹائیں"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "کوائفیہ %s چھوڑ دیا گیا ہے۔"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "کوائفیہ چھوڑیں (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "کوائفیہ نقل کریں بطرف"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "صرف ساخت"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "ساخت اور کوائف"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "کوائف صرف"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "CREATE DATABASE نقل سے قبل"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "اضافہ کریں %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT قدر اضافہ کریں"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "پابندیاں لگائیں"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "نقل شدہ کوائفیہ پر جائیں"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,7 +347,7 @@ msgstr "نقل شدہ کوائفیہ پر جائیں"
msgid "Collation"
msgstr "ترتیب"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
@@ -357,7 +356,7 @@ msgstr ""
"phpMyAdmin کی تشکیل زخیرہبند کر دی گئی ہے۔ اس بارے میں جاننے کے لیے %share%s "
"کلک کریں۔"
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "تعلق دار شجرہ کی تدوین یا برآمد کریں"
@@ -504,108 +503,108 @@ msgstr "کوائفیہ کے لیے %s SQL طلب"
msgid "Submit Query"
msgstr "طلب بھیجیں"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "آپ کی SQL طلب کامیابی سے چلائی جاچکی ہے۔"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
msgstr[1] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, php-format
msgid "Execution results of routine %s"
msgstr ""
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr ""
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, php-format
msgid "The following query has failed: \"%s\""
msgstr ""
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL نے کہا:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "فرمایش عمل کرتے ہوئے نقص ہے"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "کوائیفیہ میں کوئی جدول نہیں ملا"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "طے شدہ برآمد کریں"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "غلط سرور اشاریہ: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "Table %s has been dropped"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Database %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "کوائفیہ $1%s بن گئی ہے۔"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Created"
msgid "Create routine"
msgstr "تخلیق کیا گیا"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "تدوین موڈ"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -735,8 +734,8 @@ msgstr "کھوج غیر فعال ہے۔"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"اس جدول نقل میں اتنے کم از کم صفیں ہیں۔ حوالہ کے لیے %sdocumentation%s."
@@ -804,8 +803,8 @@ msgstr "چھپائی منظر"
msgid "Empty"
msgstr "خالی"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -882,9 +881,9 @@ msgstr "تازہ کی گئی"
msgid "Status"
msgstr "حالت"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -978,11 +977,11 @@ msgstr "ڈمپ اس مسل %s میں محفوظ ہوچکی ہے۔"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے %"
-"sdocumentation%s دیکھیں۔"
+"آپ نے بڑی مسل اپ لوڈ کرنے کی کوشش کی ہے۔ اس حد کے بارے جاننے کے لیے "
+"%sdocumentation%s دیکھیں۔"
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1165,11 +1164,11 @@ msgstr "منتخب صارفین ہٹائے جارہے ہیں"
msgid "Close"
msgstr "بند کریں"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "تدوین"
@@ -1461,8 +1460,8 @@ msgid ""
"A newer version of phpMyAdmin is available and you should consider "
"upgrading. The newest version is %s, released on %s."
msgstr ""
-"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ %"
-"s, جاری کیا گیا %s."
+"phpMyAdmin کا ایک نیا نسخہ دستیاب ہے اور آپ ضرور تازہ کاری کریں۔ نیا نسخہ "
+"%s, جاری کیا گیا %s."
#. l10n: Latest available phpMyAdmin version
#: js/messages.php:166
@@ -1722,6 +1721,221 @@ msgstr "منٹ"
msgid "Second"
msgstr "سیکنڈ"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "فانٹ سائز"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "ایک عارضی پوشہ موجود نہیں ہے۔"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "ڈسک پر مسل تحریر ناکام ہوا۔"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation."
+"html#faq1_11@Documentation]عمومی سوالات 1.11[/a]"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "کوئی اشاریہ موجود نہیں!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "اشاریے"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "منفرد"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "باندھنا"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "درجہ تعلق داری"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "تبصرہ"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "اشاریہ %s چھوڑ دیا گیا ہے"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr ""
+"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا "
+"جائے گا۔"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "کوائفیے"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "نقص"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d صف مناثر ہوئے۔"
+msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d صف حذف ہوئے۔"
+msgstr[1] "%1$d صفیں حذف ہوئیں۔"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d صف داخل ہوئی۔"
+msgstr[1] "%1$d صفیں داخل ہوئیں۔"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not open file: %s"
+msgid "Could not save recent table"
+msgstr "مسل نہیں کھول سکتا: %s"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "حداول کی گنتی کریں"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no files to upload"
+msgid "There are no recent tables"
+msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s اس MySQL سرور میں دستیاب ہے۔"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "غلط کوائفیہ"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "غلط جدول نام"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "اسے لیں"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "طے شدہ خیالیہ %s نہیں ملا!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "خیالیہ %s نیہں ملا!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "جڑ نہیں سکتا: غلط ترتیبات۔"
@@ -1735,8 +1949,8 @@ msgstr "%s میں خوش آمدید"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"آپ نے شاید تشکیل مسل نہیں بنایا۔ آپ ہوسکتا ہے کہ %1$ssetup script%2$s کو "
"استعمال کرتے ہوئے بنانا چاہتے ہیں۔"
@@ -1840,14 +2054,6 @@ msgstr "PBMS نقص"
msgid "PBMS connection failed:"
msgstr "PBMS جڑت ناکام ہوا:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "نقص"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS حاصل کریں BLOB معلومات ناکام ہوا:"
@@ -1900,11 +2106,6 @@ msgstr "جداول"
msgid "Data"
msgstr "کوائف"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "اشاریے"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2184,9 +2385,77 @@ msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "فانٹ سائز"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "دونوں"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "کھولیں"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "بند ہوا"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "ساخت"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "کوائف"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "ساخت اور کوائف"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "داخل کرنا مکمل ہوا"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "توسیع شدہ داخلے"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "دونوں بالا"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "بالا میں سے کوئی بھی نہیں"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2836,12 +3105,6 @@ msgstr "درآمد اور برآمد کے لیے پوشے اور سکڑاؤ اخ
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "کوائفیے"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "کوائفیہ دکھانے کے اختیارات"
@@ -4398,78 +4661,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr ""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "دونوں"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "کھولیں"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "بند ہوا"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "ساخت"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "کوائف"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "ساخت اور کوائف"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "سریع - تشکیل کے کم سے کم اختیارات دکھائیں"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "مخصوص - تشکیل کے تمام اختیارات دکھائیں"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "مخصوص - بالا ی طرح لیکن سریع/مخصوص انتخاب کے بغیر"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "داخل کرنا مکمل ہوا"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "توسیع شدہ داخلے"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "دونوں بالا"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "بالا میں سے کوئی بھی نہیں"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4539,23 +4730,6 @@ msgstr ""
msgid "Add an event"
msgstr "نیا صارف اضافہ کریں"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr ""
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr ""
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4627,9 +4801,9 @@ msgstr ""
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4684,11 +4858,6 @@ msgstr "سلامتی"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "تبصرہ"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
msgid "Routine parameters"
msgstr ""
@@ -4749,6 +4918,23 @@ msgid ""
"3.11[/a]"
msgstr ""
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr ""
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr ""
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4899,8 +5085,8 @@ msgstr ""
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
#: libraries/display_export.lib.php:275
@@ -5607,8 +5793,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -5897,45 +6083,6 @@ msgstr "ویو"
msgid "Export contents"
msgstr ""
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"اپ لوڈ مسل نے php.ini میں موجود upload_max_filesize ہدایات سے تجاوز کی۔"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "اپ لوڈ مسل نے HTML فارم میں مخصوص MAX_FILE_SIZE ہدایات سے تجاوز کی۔"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "اپ لوڈ کی گئی مسل صرف جزوی اپ لوڈ ہوا ہے۔"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "ایک عارضی پوشہ موجود نہیں ہے۔"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "ڈسک پر مسل تحریر ناکام ہوا۔"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "مسل قسم کی وجہ سے اپ لوڈ روکا گیا۔"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "اپ لوڈ مسل میں نامعلوم نقص ہے۔"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"اپ لوڈ مسل کو بڑھاتے ہوئے نقص ہے, دیکھیں [a@./Documentation."
-"html#faq1_11@Documentation]عمومی سوالات 1.11[/a]"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5955,6 +6102,40 @@ msgstr ""
msgid "Generated by"
msgstr ""
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr ""
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr ""
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr ""
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr ""
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr ""
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr ""
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6016,40 +6197,6 @@ msgstr ""
msgid "This plugin does not support compressed imports!"
msgstr ""
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr ""
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr ""
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr ""
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr ""
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr ""
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr ""
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr ""
@@ -6072,42 +6219,6 @@ msgid ""
"the issue and try again."
msgstr ""
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "کوئی اشاریہ موجود نہیں!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "منفرد"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "باندھنا"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "درجہ تعلق داری"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "بنیادی کلید چھوڑ دیا گیا ہے"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "اشاریہ %s چھوڑ دیا گیا ہے"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr ""
-"اشاریے %1$s اور %2$s مساوی نظر آتے ہیں اور ان میں ایک ممکنہ طور پر ہٹا دیا "
-"جائے گا۔"
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6118,27 +6229,6 @@ msgstr ""
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d صف مناثر ہوئے۔"
-msgstr[1] "%1$d صفیں متاثر ہوئیں۔"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d صف حذف ہوئے۔"
-msgstr[1] "%1$d صفیں حذف ہوئیں۔"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d صف داخل ہوئی۔"
-msgstr[1] "%1$d صفیں داخل ہوئیں۔"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fr"
@@ -6379,24 +6469,6 @@ msgstr ""
msgid "This format has no options"
msgstr ""
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not open file: %s"
-msgid "Could not save recent table"
-msgstr "مسل نہیں کھول سکتا: %s"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "حداول کی گنتی کریں"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no files to upload"
-msgid "There are no recent tables"
-msgstr "اپ لوڈ کرنے کے لیے کوئی مسل نہیں ہے"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr ""
@@ -6778,57 +6850,6 @@ msgstr ""
msgid "Target database"
msgstr ""
-#: libraries/sqlparser.lib.php:132
-msgid ""
-"There seems to be an error in your SQL query. The MySQL server error output "
-"below, if there is any, may also help you in diagnosing the problem"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:167
-msgid ""
-"There is a chance that you may have found a bug in the SQL parser. Please "
-"examine your query closely, and check that the quotes are correct and not "
-"mis-matched. Other possible failure causes may be that you are uploading a "
-"file with binary outside of a quoted text area. You can also try your query "
-"on the MySQL command line interface. The MySQL server error output below, if "
-"there is any, may also help you in diagnosing the problem. If you still have "
-"problems or if the parser fails where the command line interface succeeds, "
-"please reduce your SQL query input to the single query that causes problems, "
-"and submit a bug report with the data chunk in the CUT section below:"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:169
-msgid "BEGIN CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:171
-msgid "END CUT"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:173
-msgid "BEGIN RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:177
-msgid "END RAW"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:363
-msgid "Automatically appended backtick to the end of query!"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:366
-msgid "Unclosed quote"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:518
-msgid "Invalid Identifer"
-msgstr ""
-
-#: libraries/sqlparser.lib.php:635
-msgid "Unknown Punctuation String"
-msgstr ""
-
#: libraries/sql_query_form.lib.php:223
#, php-format
msgid "Run SQL query/queries on server %s"
@@ -6886,6 +6907,57 @@ msgstr ""
msgid "web server upload directory"
msgstr ""
+#: libraries/sqlparser.lib.php:132
+msgid ""
+"There seems to be an error in your SQL query. The MySQL server error output "
+"below, if there is any, may also help you in diagnosing the problem"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:167
+msgid ""
+"There is a chance that you may have found a bug in the SQL parser. Please "
+"examine your query closely, and check that the quotes are correct and not "
+"mis-matched. Other possible failure causes may be that you are uploading a "
+"file with binary outside of a quoted text area. You can also try your query "
+"on the MySQL command line interface. The MySQL server error output below, if "
+"there is any, may also help you in diagnosing the problem. If you still have "
+"problems or if the parser fails where the command line interface succeeds, "
+"please reduce your SQL query input to the single query that causes problems, "
+"and submit a bug report with the data chunk in the CUT section below:"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:169
+msgid "BEGIN CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:171
+msgid "END CUT"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:173
+msgid "BEGIN RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:177
+msgid "END RAW"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:363
+msgid "Automatically appended backtick to the end of query!"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:366
+msgid "Unclosed quote"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:518
+msgid "Invalid Identifer"
+msgstr ""
+
+#: libraries/sqlparser.lib.php:635
+msgid "Unknown Punctuation String"
+msgstr ""
+
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6893,48 +6965,6 @@ msgid ""
"installed the necessary PHP extensions as described in the %sdocumentation%s."
msgstr ""
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "اس ذخیرہ انجن کے متعلق تفصیلی معلومات موجود نہیں ہیں۔"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s اس MySQL سرور میں دستیاب ہے۔"
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s اس MySQL سرور کے لیے نااہل ہے۔"
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "یہMySQL سرور میں %s اس ذخیرہ انجن کی معاونت نہیں ہے۔"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "غلط کوائفیہ"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "غلط جدول نام"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "جدول %1$s کو %2$s نام تبدیل کرتے ہوئے نقص ہے"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "جدول%s نام %s میں تبدیل ہوچکا ہے"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr ""
@@ -7041,38 +7071,6 @@ msgstr ""
msgid "+ Add a value"
msgstr ""
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "اس خیالیہ %s کے لیے درست راہ نہیں ملا!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "کوئی پیش منظر دستیاب نہیں ہے۔"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "اسے لیں"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "طے شدہ خیالیہ %s نہیں ملا!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "خیالیہ %s نیہں ملا!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "خیالیہ راہ اس خیالیہ %s کے لیے نہیں ملا!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8054,8 +8052,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
#: server_privileges.php:1764
diff --git a/po/uz.po b/po/uz.po
index db5c35c629..08d61fa320 100644
--- a/po/uz.po
+++ b/po/uz.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-22 02:31+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_cyrillic \n"
+"Language: uz\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: uz\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "Қидириш"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "Қидириш"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -121,7 +121,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr " %1$s маълумотлар базаси тузилди."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Маълумотлар базасига изоҳ:"
@@ -131,9 +131,9 @@ msgstr "Маълумотлар базасига изоҳ:"
msgid "Table comments"
msgstr "Жадвал изоҳи"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -144,12 +144,12 @@ msgstr "Жадвал изоҳи"
msgid "Column"
msgstr "Майдон номлари"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -159,9 +159,9 @@ msgstr "Майдон номлари"
msgid "Type"
msgstr "Тур"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -199,13 +199,12 @@ msgstr "Алоқалар"
msgid "Comments"
msgstr "Изоҳлар"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -216,17 +215,17 @@ msgstr "Изоҳлар"
msgid "No"
msgstr "Йўқ"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -263,83 +262,83 @@ msgstr "Белгилашни бекор қилиш"
msgid "The database name is empty!"
msgstr "Маълумотлар базаси номи бўш!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr " `\"%s\"` маълумотлар базасининг номи `\"%s\"` деб ўзгартирилди."
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "\"%s\" маълумотлар базасидан \"%s\" га нусха кўчирилди."
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Буйруқ"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Маълумотлар базаси номини қуйидагига ўзгартириш"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr " \"%s\" маълумотлар омбори ўчирилди."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ушбу базага ўтиш"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Маълумотлар базасидан қуйидагига нусха олиш"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Фақат тузилиши"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Тузилиши ва маълумотлари"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Фақат маълумотлар"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Нусха кўчиришдан олдин маълумотлар базаси тузинг (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "\"%s\" қўшиш"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT қўшиш"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Чекловлар қўшиш"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Нусха олинган маълумотлар базасига ўтиш"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -348,7 +347,7 @@ msgstr "Нусха олинган маълумотлар базасига ўти
msgid "Collation"
msgstr "Таққослаш"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -360,7 +359,7 @@ msgstr ""
"Алоқадор жадваллар билан ишлаш учун қўшимча имкониятлар мавжуд эмас. "
"Сабабларини аниқлаш учун %sбу ерга%s босинг."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -513,109 +512,109 @@ msgstr "\"%s\" маълумотлар базасига SQL-сўров: "
msgid "Submit Query"
msgstr "сўровни бажариш"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL сўрови муваффақиятли бажарилди"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Сақланадиган муолажаларни бажаришга рухсат беради"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL бўш натижа берди (яъни нольта сатр)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Қуйидаги сўровлар бажарилди:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL жавоби: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Жараёнлар"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Маълумотлар базасида биронта ҳам жадвал мавжуд эмас."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export functions"
msgid "Export of routine %s"
msgstr "Функцияларни экспорт қилиш"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Сервер рақами нотўғри: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "\"%s\" жадвали ўчирилди"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "%1$s жадвали тузилди."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Боғлиқлик ўрнатиш"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Таҳрирлаш усули"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -752,8 +751,8 @@ msgstr "Кузатиш фаол эмас."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ушбу намойиш камида кўрсатилган миқдорда қаторларга эга. Батафсил маълумот "
"учун %sдокументацияга%s қаранг."
@@ -822,8 +821,8 @@ msgstr "Чоп этиш версияси"
msgid "Empty"
msgstr "Тозалаш"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -902,9 +901,9 @@ msgstr "Янгиланди"
msgid "Status"
msgstr "Ҳолат"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -998,11 +997,11 @@ msgstr "Дамп \"%s\" файлида сақланди."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
-"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари %"
-"sдокументацияда%s келтирилган."
+"Эҳтимол, юкланаётган файл ҳажми жуда катта. Бу муаммони ечишнинг усуллари "
+"%sдокументацияда%s келтирилган."
#: import.php:278 import.php:331 libraries/File.class.php:501
#: libraries/File.class.php:611
@@ -1199,11 +1198,11 @@ msgstr "Белгиланган фойдаланувчиларни ўчириш"
msgid "Close"
msgstr "Ёпиш"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Таҳрирлаш"
@@ -1847,6 +1846,225 @@ msgstr "ишлатилмоқда"
msgid "Second"
msgstr "секундига"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Шрифт ўлчами"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
+"\"upload_max_filesize\" директиваси қийматидан катта!"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
+"директиваси қийматидан катта!"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Юкланаётган файл фақатгина қисман юкланди."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Файлни дискка ёзишдахатолик юз берди."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation."
+"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Индекс белгиланмаган!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Индекслар"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Уникал"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Қисилган"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Элементлар сони"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Изоҳ"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Бирламчи калит ўчирилди"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr " \"%s\" индекси ўчирилди"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Маълумотлар базалари"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Хатолик"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d та қаторларга таъсир этди."
+msgstr[1] "%1$d та қаторларга таъсир этди."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d та қаторлар ўчирилди."
+msgstr[1] "%1$d та қаторлар ўчирилди."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d та қаторлар қўйилди."
+msgstr[1] "%1$d та қаторлар қўйилди."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Жадвалларни санаш"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. "
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Нотўғри маълумотлар базаси"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Жадвал номи нотўғри"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Олдиндан кўриш мумкин эмас."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Тадбиқ қилиш"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr " \"%s\" асл мавзуси топилмади!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr " \"%s\" мавзуси топилмади!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr " \"%s\" мавзуси файлларига йўл топилмади!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Уланиб бўлмади: нотўғри созланган."
@@ -1860,8 +2078,8 @@ msgstr "\"%s\" дастурига хуш келибсиз"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Эҳтимол, конфигурация файли тузилмаган. Уни тузиш учун %1$ssўрнатиш "
"сценарийсидан%2$s фойдаланишингиз мумкин."
@@ -1973,14 +2191,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Саҳифа тузиб бўлмади"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Хатолик"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2033,11 +2243,6 @@ msgstr "Жадваллар"
msgid "Data"
msgstr "Маълумотлар"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Индекслар"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2336,9 +2541,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Шрифт ўлчами"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Ёпиш"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "тузилиш"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Тузилиши ва маълумотлари"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "Тўла қўйиш"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Кенгайтирилган қўйилмалар"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3043,12 +3324,6 @@ msgstr "Импорт ва экспорт каталоглари ва қисиш
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Маълумотлар базалари"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Маълумотлар базаларини кўрсатиш афзалликлари"
@@ -4081,8 +4356,8 @@ msgstr "\"config\" аутентификация усули пароли"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Агар PDF-схема ишлатмасангиз, бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "PDF schema: pages table"
@@ -4190,8 +4465,8 @@ msgstr "SSL уланишдан фойдаланиш"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-схемадан фойдаланмаслик учун бўш қолдиринг, асл қиймати: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "PDF schema: table coordinates"
@@ -4781,86 +5056,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Нотўғри IP-адрес: \"%s\""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Ёпиш"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "тузилиш"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Тузилиши ва маълумотлари"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "Тўла қўйиш"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Кенгайтирилган қўйилмалар"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4931,25 +5126,6 @@ msgstr ""
msgid "Add an event"
msgstr "Янги фойдаланувчи қўшиш"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
-"кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Сервер жавоб бермаяпти"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Тафсилотлар..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5024,9 +5200,9 @@ msgstr "Узунлик/қийматлар"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5085,11 +5261,6 @@ msgstr "Хавфсизлик"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Изоҳ"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5156,6 +5327,25 @@ msgstr ""
"Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]\"FAQ "
"3.11\"[/a]га қаранг"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"\"config.inc.php\" конфигурацион файлининг \"controluser\" директивасида "
+"кўрсатилган фойдаланувчи ёрдамида уланиб бўлмади."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Сервер жавоб бермаяпти"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(ёки локал MySQL сервернинг сокети нотўғри созланган)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Тафсилотлар..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -5329,12 +5519,12 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Қиймат %1$sstrftime%2$s функцияси билан қайта ишланган, шунинг учун ҳозирги "
-"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: %"
-"3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
+"вақт ва санани қўйиш мумкин. Қўшимча равишда қуйидагилар ишлатилиши мумкин: "
+"%3$s. Матннинг бошқа қисмлари ўзгаришсиз қолади."
#: libraries/display_export.lib.php:275
msgid "use this for future exports"
@@ -6146,8 +6336,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6463,48 +6653,6 @@ msgstr "Намойиш"
msgid "Export contents"
msgstr "Таркибини экспорт қилиш"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Юкланаётган файл ҳажми PHP конфигурацион файлида (php.ini) кўрсатилган "
-"\"upload_max_filesize\" директиваси қийматидан катта!"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Юкланаётган файл ҳажми HTML формада кўрсатилган \"MAX_FILE_SIZE\" "
-"директиваси қийматидан катта!"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Юкланаётган файл фақатгина қисман юкланди."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Вақтинчалик файлларни сақлаш учун каталог топилмади."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Файлни дискка ёзишдахатолик юз берди."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Файлнинг юкланиши унинг кенгайтмаси сабали тўхтатилди."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Файл юкланаётган вақтда номаълум хатолик юз берди."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Юкланган файл жойини ўзгартиришда хатолик, [a@./Documentation."
-"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]га қаранг"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6522,6 +6670,42 @@ msgstr "SQL сўрови натижаси"
msgid "Generated by"
msgstr "Тузилган"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
+"бажаришингиз мумкин:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ушбу базага ўтиш"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "танловлар"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ушбу жадвалга ўтиш"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ушбу кўринишга ўтиш"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6586,42 +6770,6 @@ msgstr "Майдон номлари"
msgid "This plugin does not support compressed imports!"
msgstr "Ушбу модул қисилган маълумотларни импорт қила олмайди!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Қуйидаги тузилишлар ё тузилди ё ўзгартирилди. Бу ерда сиз қуйидаги амалларни "
-"бажаришингиз мумкин:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Тузилмани кўриш учун унинг номи устига сичқонча тугмасини босинг"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Қуйидаги танловларни ўзгартириш учун, \"Танловлар\" боғига босинг"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Тузилмани ўзгартириш учун, \"Тузилма\" боғига киринг"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ушбу базага ўтиш"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "танловлар"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ушбу жадвалга ўтиш"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ушбу кўринишга ўтиш"
-
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6655,40 +6803,6 @@ msgstr ""
"Кўрсатилган XML файл ё нотўғри тузилган ё чала. Уни тўғирлаб, қайта ҳаракат "
"қилиб кўринг."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Индекс белгиланмаган!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Уникал"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Қисилган"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Элементлар сони"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Бирламчи калит ўчирилди"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr " \"%s\" индекси ўчирилди"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr " %1$s ва %2$s индекслари бир хил, улардан бирини ўчириш мумкин."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6701,30 +6815,6 @@ msgstr "Йўқ"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d та қаторларга таъсир этди."
-msgstr[1] "%1$d та қаторларга таъсир этди."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d та қаторлар ўчирилди."
-msgstr[1] "%1$d та қаторлар ўчирилди."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d та қаторлар қўйилди."
-msgstr[1] "%1$d та қаторлар қўйилди."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6969,24 +7059,6 @@ msgstr "Навигация ойнасини қайта юклаш"
msgid "This format has no options"
msgstr "Ушбу формат учун созланадиган параметр мавжуд эмас"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Конфигурацияни юклаб ёки сақлаб бўлмади"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Жадвалларни санаш"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Биронта ҳам конфигурацияланган сервер мавжуд эмас"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Тайёр эмас"
@@ -7392,6 +7464,63 @@ msgstr "Фарқ"
msgid "Target database"
msgstr "Нишон база"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш "
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Тозалаш"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Майдон номлари"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Ушбу SQL сўровига хатчўп тузиш"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Барча фойдаланувчиларга рухсат бериш"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Шу номли хатчўпни алмаштириш"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Тақсимловчи"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ушбу сўровни қайта кўрсатиш"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Фақат кўриш"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Файлни танлаш"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Юклаш каталогидан"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7454,63 +7583,6 @@ msgstr "Нотўғри идентификатор"
msgid "Unknown Punctuation String"
msgstr "Номаълум пунктуация"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "\"%s\" серверида SQL-сўров(лар)ни бажариш "
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "\"%s\" маълумотлар базасида SQL-сўров(лар)ни бажариш"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Тозалаш"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Майдон номлари"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Ушбу SQL сўровига хатчўп тузиш"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Барча фойдаланувчиларга рухсат бериш"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Шу номли хатчўпни алмаштириш"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "Сўровлар ойнаси ичидаги маълумотларни блокировка қилиш"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Тақсимловчи"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ушбу сўровни қайта кўрсатиш"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Фақат кўриш"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Файлни танлаш"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Юклаш каталогидан"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7520,48 +7592,6 @@ msgstr ""
"SQL синтаксисини текшириб бўлмади. PHP учун зарур кенгайтмалар "
"ўрнатилганлигини текширинг, батафсил маълумот учун %sдокументацияга%s қаранг."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Ушбу турдаги жадваллар ҳақида қўшимча маълумот мавжуд эмас. "
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олади."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "\"%s\" туридаги жадваллар ушбу MySQL серверда фаолсизлантирилган."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ушбу MySQL сервери \"%s\" турдаги жадваллар билан ишлай олмайди."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Нотўғри маълумотлар базаси"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Жадвал номи нотўғри"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s жадвалини %2$s деб қайта номлашда хатолик"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "`\"%s\"` жадвалининг номи `\"%s\"` деб ўзгартирилди."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Жадвал - бўш!"
@@ -7693,38 +7723,6 @@ msgstr "Бўлакларни (PARTITIONS) белгилаш"
msgid "+ Add a value"
msgstr "Янги фойдаланувчи қўшиш"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr " \"%s\" мавзуси расмларига тўғри йўл топилмади!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Олдиндан кўриш мумкин эмас."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Тадбиқ қилиш"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr " \"%s\" асл мавзуси топилмади!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr " \"%s\" мавзуси топилмади!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr " \"%s\" мавзуси файлларига йўл топилмади!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8891,8 +8889,8 @@ msgstr "Фойдаланувчилар номлари билан аталган
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"ИЗОҲ: phpMyAdmin фойдаланувчилар привилегиялари ҳақидаги маълумотларни "
"тўғридан-тўғри MySQL привилегиялари жадвалидан олади. Ушбу жадвалдаги "
@@ -9902,8 +9900,8 @@ msgstr "Очиқ файллар сони."
#: server_status.php:934
msgid "The number of streams that are open (used mainly for logging)."
msgstr ""
-"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen()"
-"\" функцияси ёрдамида очилган файлга айтилади."
+"Очиқ оқимлар сони (журнал файлларида кўлланилади). Оқим деб \"fopen"
+"()\" функцияси ёрдамида очилган файлга айтилади."
#: server_status.php:935
msgid "The number of tables that are open."
@@ -10540,9 +10538,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -11479,8 +11477,8 @@ msgstr "Кўриниш номини ўзгартириш"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Тахминий бўлиши мумкин. [a@./Documentation.html#faq3_11@Documentation]"
-#~ "\"FAQ 3.11\"[/a]га қаранг"
+#~ "Тахминий бўлиши мумкин. [a@./Documentation."
+#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]га қаранг"
#~ msgid "Bar type"
#~ msgstr "Сўров тури"
diff --git a/po/uz@latin.po b/po/uz@latin.po
index b825af7e25..53c938c425 100644
--- a/po/uz@latin.po
+++ b/po/uz@latin.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2010-07-22 02:30+0200\n"
"Last-Translator: Marc Delisle \n"
"Language-Team: uzbek_latin \n"
+"Language: uz@latin\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: uz@latin\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.1\n"
@@ -45,13 +45,13 @@ msgstr ""
msgid "Search"
msgstr "Qidirish"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -64,18 +64,18 @@ msgstr "Qidirish"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "OK"
@@ -122,7 +122,7 @@ msgstr ""
msgid "Database %1$s has been created."
msgstr " %1$s ma`lumotlar bazasi tuzildi."
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "Ma`lumotlar bazasiga izoh:"
@@ -132,9 +132,9 @@ msgstr "Ma`lumotlar bazasiga izoh:"
msgid "Table comments"
msgstr "Jadval izohi"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -145,12 +145,12 @@ msgstr "Jadval izohi"
msgid "Column"
msgstr "Maydon nomlari"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -160,9 +160,9 @@ msgstr "Maydon nomlari"
msgid "Type"
msgstr "Tur"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -200,13 +200,12 @@ msgstr "Aloqalar"
msgid "Comments"
msgstr "Izohlar"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -217,17 +216,17 @@ msgstr "Izohlar"
msgid "No"
msgstr "Yo‘q"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -264,83 +263,83 @@ msgstr "Belgilashni bekor qilish"
msgid "The database name is empty!"
msgstr "Ma`lumotlar bazasi nomi bo‘sh!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr " `\"%s\"` ma`lumotlar bazasining nomi `\"%s\"` deb o‘zgartirildi."
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "\"%s\" ma`lumotlar bazasidan \"%s\" ga nusxa ko‘chirildi."
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "Buyruq"
-#: db_operations.php:439
+#: db_operations.php:440
#, fuzzy
#| msgid "Rename database to"
msgid "Remove database"
msgstr "Ma`lumotlar bazasi nomini quyidagiga o‘zgartirish"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr " \"%s\" ma`lumotlar ombori o‘chirildi."
-#: db_operations.php:456
+#: db_operations.php:457
#, fuzzy
#| msgid "Go to database"
msgid "Drop the database (DROP)"
msgstr "Ushbu bazaga o‘tish"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "Ma`lumotlar bazasidan quyidagiga nusxa olish"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "Faqat tuzilishi"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "Tuzilishi va ma`lumotlari"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "Faqat ma`lumotlar"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "Nusxa ko‘chirishdan oldin ma`lumotlar bazasi tuzing (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "\"%s\" qo‘shish"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "AUTO_INCREMENT qo‘shish"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "Cheklovlar qo‘shish"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -349,7 +348,7 @@ msgstr "Nusxa olingan ma`lumotlar bazasiga o‘tish"
msgid "Collation"
msgstr "Taqqoslash"
-#: db_operations.php:564
+#: db_operations.php:565
#, fuzzy, php-format
#| msgid ""
#| "The additional features for working with linked tables have been "
@@ -361,7 +360,7 @@ msgstr ""
"Aloqador jadvallar bilan ishlash uchun qo‘shimcha imkoniyatlar mavjud emas. "
"Sabablarini aniqlash uchun %sbu yerga%s bosing."
-#: db_operations.php:599
+#: db_operations.php:600
#, fuzzy
#| msgid "Relational schema"
msgid "Edit or export relational schema"
@@ -514,109 +513,109 @@ msgstr "\"%s\" ma`lumotlar bazasiga SQL-so‘rov: "
msgid "Submit Query"
msgstr "so‘rovni bajarish"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "SQL so‘rovi muvaffaqiyatli bajarildi"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "Saqlanadigan muolajalarni bajarishga ruxsat beradi"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL bo‘sh natija berdi (ya`ni nolta satr)."
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "Quyidagi so‘rovlar bajarildi:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL javobi: "
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Processes"
msgid "Error in processing request"
msgstr "Jarayonlar"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database."
msgid "No routine with name %1$s found in database %2$s"
msgstr "Ma`lumotlar bazasida bironta ham jadval mavjud emas."
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export functions"
msgid "Export of routine %s"
msgstr "Funktsiyalarni eksport qilish"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: \"%s\""
msgid "Invalid routine type: \"%s\""
msgstr "Server raqami noto‘g‘ri: \"%s\""
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Table %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "\"%s\" jadvali o‘chirildi"
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "%1$s jadvali tuzildi."
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "Bog‘liqlik o‘rnatish"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "Tahrirlash usuli"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -754,8 +753,8 @@ msgstr "Kuzatish faol emas."
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr ""
"Ushbu namoyish kamida ko‘rsatilgan miqdorda qatorlarga ega. Batafsil "
"ma`lumot uchun %sdokumentatsiyaga%s qarang."
@@ -824,8 +823,8 @@ msgstr "Chop etish versiyasi"
msgid "Empty"
msgstr "Tozalash"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -904,9 +903,9 @@ msgstr "Yangilandi"
msgid "Status"
msgstr "Holat"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -1000,8 +999,8 @@ msgstr "Damp \"%s\" faylida saqlandi."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr ""
"Ehtimol, yuklanayotgan fayl hajmi juda katta. Bu muammoni yechishning "
"usullari %sdokumentatsiyada%s keltirilgan."
@@ -1204,11 +1203,11 @@ msgstr "Belgilangan foydalanuvchilarni o‘chirish"
msgid "Close"
msgstr "Yopish"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "Tahrirlash"
@@ -1854,6 +1853,225 @@ msgstr "ishlatilmoqda"
msgid "Second"
msgstr "sekundiga"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "Shrift o‘lchami"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr ""
+"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
+"\"upload_max_filesize\" direktivasi qiymatidan katta!"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr ""
+"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
+"direktivasi qiymatidan katta!"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "Faylni diskka yozishdaxatolik yuz berdi."
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation."
+"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "Indeks belgilanmagan!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "Indekslar"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "Unikal"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "Qisilgan"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "Elementlar soni"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "Izoh"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "Birlamchi kalit o‘chirildi"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr " \"%s\" indeksi o‘chirildi"
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "Ma`lumotlar bazalari"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "Xatolik"
+
+#: libraries/Message.class.php:260
+#, fuzzy, php-format
+#| msgid "%1$d row(s) affected."
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
+msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
+
+#: libraries/Message.class.php:279
+#, fuzzy, php-format
+#| msgid "%1$d row(s) deleted."
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "%1$d ta qatorlar o‘chirildi."
+msgstr[1] "%1$d ta qatorlar o‘chirildi."
+
+#: libraries/Message.class.php:298
+#, fuzzy, php-format
+#| msgid "%1$d row(s) inserted."
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "%1$d ta qatorlar qo‘yildi."
+msgstr[1] "%1$d ta qatorlar qo‘yildi."
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Cannot load or save configuration"
+msgid "Could not save recent table"
+msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "Jadvallarni sanash"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. "
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi."
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "Noto‘g‘ri ma`lumotlar bazasi"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "Jadval nomi noto‘g‘ri"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "Oldindan ko‘rish mumkin emas."
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "Tadbiq qilish"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr " \"%s\" asl mavzusi topilmadi!"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr " \"%s\" mavzusi topilmadi!"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "Ulanib bo‘lmadi: noto‘g‘ri sozlangan."
@@ -1867,8 +2085,8 @@ msgstr "\"%s\" dasturiga xush kelibsiz"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"Ehtimol, konfiguratsiya fayli tuzilmagan. Uni tuzish uchun %1$sso‘rnatish "
"ssenariysidan%2$s foydalanishingiz mumkin."
@@ -1980,14 +2198,6 @@ msgstr ""
msgid "PBMS connection failed:"
msgstr "Sahifa tuzib bo‘lmadi"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "Xatolik"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr ""
@@ -2040,11 +2250,6 @@ msgstr "Jadvallar"
msgid "Data"
msgstr "Ma`lumotlar"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "Indekslar"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2344,9 +2549,85 @@ msgstr ""
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "Shrift o‘lchami"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr ""
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr ""
+
+#: libraries/config.values.php:75
+#, fuzzy
+#| msgid "Close"
+msgid "Closed"
+msgstr "Yopish"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "tuzilish"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr ""
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+#, fuzzy
+#| msgid "Structure and data"
+msgid "structure and data"
+msgstr "Tuzilishi va ma`lumotlari"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr ""
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr ""
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr ""
+
+#: libraries/config.values.php:120
+#, fuzzy
+#| msgid "Complete inserts"
+msgid "complete inserts"
+msgstr "To‘la qo‘yish"
+
+#: libraries/config.values.php:121
+#, fuzzy
+#| msgid "Extended inserts"
+msgid "extended inserts"
+msgstr "Kengaytirilgan qo‘yilmalar"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr ""
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr ""
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -3052,12 +3333,6 @@ msgstr "Import va eksport kataloglari va qisish usullarini belgilash"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "Ma`lumotlar bazalari"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "Ma`lumotlar bazalarini ko‘rsatish afzalliklari"
@@ -4004,9 +4279,9 @@ msgid ""
"More information on [a@http://sf.net/support/tracker.php?aid=1849494]PMA bug "
"tracker[/a] and [a@http://bugs.mysql.com/19588]MySQL Bugs[/a]"
msgstr ""
-"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?aid=1849494]"
-"\"PMA bug tracker\"[/a] va [a@http://bugs.mysql.com/19588]\"MySQL Bugs\"[/a]"
-"larga qarang"
+"Ko‘proq ma`lumot uchun [a@http://sf.net/support/tracker.php?"
+"aid=1849494]\"PMA bug tracker\"[/a] va [a@http://bugs.mysql."
+"com/19588]\"MySQL Bugs\"[/a]larga qarang"
#: libraries/config/messages.inc.php:387
msgid "Disable use of INFORMATION_SCHEMA"
@@ -4096,8 +4371,8 @@ msgstr "\"config\" autentifikatsiya usuli paroli"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_pdf_pages[/kbd]"
msgstr ""
-"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_pdf_pages\"[/kbd]"
+"Agar PDF-sxema ishlatmasangiz, bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_pdf_pages\"[/kbd]"
#: libraries/config/messages.inc.php:404
msgid "PDF schema: pages table"
@@ -4111,8 +4386,8 @@ msgid ""
msgstr ""
"Aloqalar, xatcho‘plar va PDF imkoniyatlari uchun ishlatiladigan baza. "
"Batafsil ma`lumot uchun [a@http://wiki.phpmyadmin.net/pma/pmadb]\"pmadb\"[/a]"
-"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: [kbd]"
-"\"phpmyadmin\"[/kbd]"
+"ga qarang. Agar foydalanmasangiz, bo‘sh qoldiring. Asl qiymati: "
+"[kbd]\"phpmyadmin\"[/kbd]"
#: libraries/config/messages.inc.php:406
#, fuzzy
@@ -4205,8 +4480,8 @@ msgstr "SSL ulanishdan foydalanish"
msgid ""
"Leave blank for no PDF schema support, suggested: [kbd]pma_table_coords[/kbd]"
msgstr ""
-"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: [kbd]"
-"\"pma_table_coords\"[/kbd]"
+"PDF-sxemadan foydalanmaslik uchun bo‘sh qoldiring, asl qiymati: "
+"[kbd]\"pma_table_coords\"[/kbd]"
#: libraries/config/messages.inc.php:423
msgid "PDF schema: table coordinates"
@@ -4802,86 +5077,6 @@ msgstr ""
msgid "Incorrect IP address: %s"
msgstr "Noto‘g‘ri IP-adres: \"%s\""
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr ""
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr ""
-
-#: libraries/config.values.php:75
-#, fuzzy
-#| msgid "Close"
-msgid "Closed"
-msgstr "Yopish"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "tuzilish"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr ""
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-#, fuzzy
-#| msgid "Structure and data"
-msgid "structure and data"
-msgstr "Tuzilishi va ma`lumotlari"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr ""
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr ""
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr ""
-
-#: libraries/config.values.php:120
-#, fuzzy
-#| msgid "Complete inserts"
-msgid "complete inserts"
-msgstr "To‘la qo‘yish"
-
-#: libraries/config.values.php:121
-#, fuzzy
-#| msgid "Extended inserts"
-msgid "extended inserts"
-msgstr "Kengaytirilgan qo‘yilmalar"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr ""
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr ""
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4952,25 +5147,6 @@ msgstr ""
msgid "Add an event"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr ""
-"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
-"ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "Server javob bermayapti"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "Tafsilotlar..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -5045,9 +5221,9 @@ msgstr "Uzunlik/qiymatlar"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -5106,11 +5282,6 @@ msgstr "Xavfsizlik"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "Izoh"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -5174,8 +5345,27 @@ msgid ""
"May be approximate. See [a@./Documentation.html#faq3_11@Documentation]FAQ "
"3.11[/a]"
msgstr ""
-"Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
-"\"FAQ 3.11\"[/a]ga qarang"
+"Taxminiy bo‘lishi mumkin. [a@./Documentation."
+"html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
+
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr ""
+"\"config.inc.php\" konfiguratsion faylining \"controluser\" direktivasida "
+"ko‘rsatilgan foydalanuvchi yordamida ulanib bo‘lmadi."
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "Server javob bermayapti"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(yoki lokal MySQL serverning soketi noto‘g‘ri sozlangan)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "Tafsilotlar..."
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
@@ -5350,8 +5540,8 @@ msgstr ""
#| "happen: %3$s. Other text will be kept as is."
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"Qiymat %1$sstrftime%2$s funksiyasi bilan qayta ishlangan, shuning uchun "
"hozirgi vaqt va sanani qo‘yish mumkin. Qo‘shimcha ravishda quyidagilar "
@@ -6172,8 +6362,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr ""
#: libraries/engines/pbxt.lib.php:129
@@ -6490,48 +6680,6 @@ msgstr "Namoyish"
msgid "Export contents"
msgstr "Tarkibini eksport qilish"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr ""
-"Yuklanayotgan fayl hajmi PHP konfiguratsion faylida (php.ini) ko‘rsatilgan "
-"\"upload_max_filesize\" direktivasi qiymatidan katta!"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr ""
-"Yuklanayotgan fayl hajmi HTML formada ko‘rsatilgan \"MAX_FILE_SIZE\" "
-"direktivasi qiymatidan katta!"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "Yuklanayotgan fayl faqatgina qisman yuklandi."
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "Vaqtinchalik fayllarni saqlash uchun katalog topilmadi."
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "Faylni diskka yozishdaxatolik yuz berdi."
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "Faylning yuklanishi uning kengaytmasi sabali to‘xtatildi."
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "Fayl yuklanayotgan vaqtda noma`lum xatolik yuz berdi."
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"Yuklangan fayl joyini o‘zgartirishda xatolik, [a@./Documentation."
-"html#faq1_11@Documentation]\"FAQ 1.11\"[/a]ga qarang"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -6549,6 +6697,42 @@ msgstr "SQL so‘rovi natijasi"
msgid "Generated by"
msgstr "Tuzilgan"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr ""
+"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi "
+"amallarni bajarishingiz mumkin:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "Ushbu bazaga o‘tish"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "tanlovlar"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "Ushbu jadvalga o‘tish"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "Ushbu ko‘rinishga o‘tish"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -6614,42 +6798,6 @@ msgstr "Maydon nomlari"
msgid "This plugin does not support compressed imports!"
msgstr "Ushbu modul qisilgan ma`lumotlarni import qila olmaydi!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr ""
-"Quyidagi tuzilishlar yo tuzildi yo o‘zgartirildi. Bu yerda siz quyidagi "
-"amallarni bajarishingiz mumkin:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "Tuzilmani ko‘rish uchun uning nomi ustiga sichqoncha tugmasini bosing"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "Quyidagi tanlovlarni o‘zgartirish uchun, \"Tanlovlar\" bog‘iga bosing"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "Tuzilmani o‘zgartirish uchun, \"Tuzilma\" bog‘iga kiring"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "Ushbu bazaga o‘tish"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "tanlovlar"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "Ushbu jadvalga o‘tish"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "Ushbu ko‘rinishga o‘tish"
-
#: libraries/import/ods.php:28
#, fuzzy
#| msgid "Import percentages as proper decimals (12.00% to .12)"
@@ -6683,40 +6831,6 @@ msgstr ""
"Ko‘rsatilgan XML fayl yo noto‘g‘ri tuzilgan yo chala. Uni to‘g‘irlab, qayta "
"harakat qilib ko‘ring."
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "Indeks belgilanmagan!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "Unikal"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "Qisilgan"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "Elementlar soni"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "Birlamchi kalit o‘chirildi"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr " \"%s\" indeksi o‘chirildi"
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr " %1$s va %2$s indekslari bir xil, ulardan birini o‘chirish mumkin."
-
#: libraries/kanji-encoding.lib.php:142
#, fuzzy
#| msgid "None"
@@ -6729,30 +6843,6 @@ msgstr "Yo‘q"
msgid "Convert to Kana"
msgstr ""
-#: libraries/Message.class.php:260
-#, fuzzy, php-format
-#| msgid "%1$d row(s) affected."
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "%1$d ta qatorlarga ta`sir etdi."
-msgstr[1] "%1$d ta qatorlarga ta`sir etdi."
-
-#: libraries/Message.class.php:279
-#, fuzzy, php-format
-#| msgid "%1$d row(s) deleted."
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "%1$d ta qatorlar o‘chirildi."
-msgstr[1] "%1$d ta qatorlar o‘chirildi."
-
-#: libraries/Message.class.php:298
-#, fuzzy, php-format
-#| msgid "%1$d row(s) inserted."
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "%1$d ta qatorlar qo‘yildi."
-msgstr[1] "%1$d ta qatorlar qo‘yildi."
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6997,24 +7087,6 @@ msgstr "Navigatsiya oynasini qayta yuklash"
msgid "This format has no options"
msgstr "Ushbu format uchun sozlanadigan parametr mavjud emas"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Cannot load or save configuration"
-msgid "Could not save recent table"
-msgstr "Konfiguratsiyani yuklab yoki saqlab bo‘lmadi"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "Jadvallarni sanash"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "Bironta ham konfiguratsiyalangan server mavjud emas"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "Tayyor emas"
@@ -7422,6 +7494,63 @@ msgstr "Farq"
msgid "Target database"
msgstr "Nishon baza"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish "
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "Tozalash"
+
+#: libraries/sql_query_form.lib.php:301
+#, fuzzy
+#| msgid "Column names"
+msgid "Columns"
+msgstr "Maydon nomlari"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "Barcha foydalanuvchilarga ruxsat berish"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "Shu nomli xatcho‘pni almashtirish"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "Taqsimlovchi"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr "Ushbu so‘rovni qayta ko‘rsatish"
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "Faqat ko‘rish"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "Faylni tanlash"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "Yuklash katalogidan"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -7485,63 +7614,6 @@ msgstr "Noto‘g‘ri identifikator"
msgid "Unknown Punctuation String"
msgstr "Noma`lum punktuatsiya"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "\"%s\" serverida SQL-so‘rov(lar)ni bajarish "
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "\"%s\" ma`lumotlar bazasida SQL-so‘rov(lar)ni bajarish"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "Tozalash"
-
-#: libraries/sql_query_form.lib.php:301
-#, fuzzy
-#| msgid "Column names"
-msgid "Columns"
-msgstr "Maydon nomlari"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "Ushbu SQL so‘roviga xatcho‘p tuzish"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "Barcha foydalanuvchilarga ruxsat berish"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "Shu nomli xatcho‘pni almashtirish"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "So‘rovlar oynasi ichidagi ma`lumotlarni blokirovka qilish"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "Taqsimlovchi"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr "Ushbu so‘rovni qayta ko‘rsatish"
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "Faqat ko‘rish"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "Faylni tanlash"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "Yuklash katalogidan"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -7552,48 +7624,6 @@ msgstr ""
"o‘rnatilganligini tekshiring, batafsil ma`lumot uchun %sdokumentatsiyaga%s "
"qarang."
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "Ushbu turdagi jadvallar haqida qo‘shimcha ma`lumot mavjud emas. "
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay oladi."
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "\"%s\" turidagi jadvallar ushbu MySQL serverda faolsizlantirilgan."
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "Ushbu MySQL serveri \"%s\" turdagi jadvallar bilan ishlay olmaydi."
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "Noto‘g‘ri ma`lumotlar bazasi"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "Jadval nomi noto‘g‘ri"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "%1$s jadvalini %2$s deb qayta nomlashda xatolik"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "`\"%s\"` jadvalining nomi `\"%s\"` deb o‘zgartirildi."
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "Jadval - bo‘sh!"
@@ -7725,38 +7755,6 @@ msgstr "Bo‘laklarni (PARTITIONS) belgilash"
msgid "+ Add a value"
msgstr "Yangi foydalanuvchi qo‘shish"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr " \"%s\" mavzusi rasmlariga to‘g‘ri yo‘l topilmadi!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "Oldindan ko‘rish mumkin emas."
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "Tadbiq qilish"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr " \"%s\" asl mavzusi topilmadi!"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr " \"%s\" mavzusi topilmadi!"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr " \"%s\" mavzusi fayllariga yo‘l topilmadi!"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
#, fuzzy
#| msgid ""
@@ -8935,8 +8933,8 @@ msgstr ""
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"IZOH: phpMyAdmin foydalanuvchilar privilegiyalari haqidagi ma`lumotlarni "
"to‘g‘ridan-to‘g‘ri MySQL privilegiyalari jadvalidan oladi. Ushbu jadvaldagi "
@@ -10602,9 +10600,9 @@ msgstr ""
#| "You set the [kbd]config[/kbd] authentication type and included username "
#| "and password for auto-login, which is not a desirable option for live "
#| "hosts. Anyone who knows or guesses your phpMyAdmin URL can directly "
-#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id=%1"
-#| "$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http[/"
-#| "kbd]."
+#| "access your phpMyAdmin panel. Set [a@?page=servers&mode=edit&id="
+#| "%1$d#tab_Server]authentication type[/a] to [kbd]cookie[/kbd] or [kbd]http"
+#| "[/kbd]."
msgid ""
"You set the [kbd]config[/kbd] authentication type and included username and "
"password for auto-login, which is not a desirable option for live hosts. "
@@ -10618,9 +10616,9 @@ msgstr ""
"real xostlar uchun tavsiya etilmaydi. Serverdagi phpMyAdmin turgan katalog "
"adresini bilgan yoki taxmin qilgan har kim ushbu dasturga bemalol kirib, "
"serverdagi ma`lumotlar bazalari bilan istalgan operatsiyalarni amalga "
-"oshirishi mumkin. Server [a@?page=servers&mode=edit&id=%1"
-"$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http[/"
-"kbd] deb belgilash tavsiya etiladi."
+"oshirishi mumkin. Server [a@?page=servers&mode=edit&id="
+"%1$d#tab_Server]autentifikatsiya usuli[/a]ni [kbd]cookie[/kbd] yoki [kbd]http"
+"[/kbd] deb belgilash tavsiya etiladi."
#: setup/lib/index.lib.php:270
#, fuzzy, php-format
@@ -11544,8 +11542,8 @@ msgstr "Ko‘rinish nomini o‘zgartirish"
#~ "The result of this query can't be used for a chart. See [a@./"
#~ "Documentation.html#faq6_29@Documentation]FAQ 6.29[/a]"
#~ msgstr ""
-#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation.html#faq3_11@Documentation]"
-#~ "\"FAQ 3.11\"[/a]ga qarang"
+#~ "Taxminiy bo‘lishi mumkin. [a@./Documentation."
+#~ "html#faq3_11@Documentation]\"FAQ 3.11\"[/a]ga qarang"
#~ msgid "Bar type"
#~ msgstr "So‘rov turi"
diff --git a/po/zh_CN.po b/po/zh_CN.po
index 0b6e524837..6065508699 100644
--- a/po/zh_CN.po
+++ b/po/zh_CN.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-08 05:00+0200\n"
"Last-Translator: shanyan baishui \n"
"Language-Team: chinese_simplified \n"
+"Language: zh_CN\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_CN\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "搜索"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "搜索"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "执行"
@@ -119,7 +119,7 @@ msgstr "该系统不支持 %s 文件,请访问 www.phpmyadmin.net 查询更多
msgid "Database %1$s has been created."
msgstr "创建数据库 %1$s 成功。"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "数据库注释:"
@@ -129,9 +129,9 @@ msgstr "数据库注释:"
msgid "Table comments"
msgstr "表注释"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "表注释"
msgid "Column"
msgstr "字段"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "字段"
msgid "Type"
msgstr "类型"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,13 +195,12 @@ msgstr "链接到"
msgid "Comments"
msgstr "注释"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +211,17 @@ msgstr "注释"
msgid "No"
msgstr "否"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -259,79 +258,79 @@ msgstr "全不选"
msgid "The database name is empty!"
msgstr "数据库名不能为空!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "已将数据库 %s 改名为 %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "已将数据库 %s 复制为 %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "将数据库改名为"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "命令"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "删除数据库"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "已被删除数据库 %s 。"
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "删除数据库 (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "复制数据库到"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "仅结构"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "结构和数据"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "仅数据"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "复制前创建数据库 (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "添加 %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "添加自增 (AUTO_INCREMENT) 值"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "强制添加"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "切换到复制的数据库"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -340,14 +339,14 @@ msgstr "切换到复制的数据库"
msgid "Collation"
msgstr "整理"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr "phpMyAdmin 高级功能尚未激活。要查出原因,请点击%s此处%s。"
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "编辑或导出关系大纲"
@@ -492,109 +491,109 @@ msgstr "在数据库 %s 执行 SQL 语句:"
msgid "Submit Query"
msgstr "提交查询"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "您的 SQL 语句已成功运行"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "允许运行存储过程。"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查询结果为空 (即零行)。"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "下列查询被执行:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL 返回:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "处理请求时发生错误"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "没有在数据库中找到表"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "导出选项"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "无效的服务器索引: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "已删除字段 %s "
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "创建数据表 %1$s 成功。"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "创建关系"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "编辑模式"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -722,8 +721,8 @@ msgstr "追踪已禁用。"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "该视图最少包含的行数,参见%s文档%s。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -790,8 +789,8 @@ msgstr "打印预览"
msgid "Empty"
msgstr "清空"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -864,9 +863,9 @@ msgstr "更新"
msgid "Status"
msgstr "状态"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -958,8 +957,8 @@ msgstr "转存已经保存到文件 %s 中。"
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "您可能正在上传很大的文件,请参考%s文档%s来寻找解决方法。"
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1132,11 +1131,11 @@ msgstr "正在删除选中的用户"
msgid "Close"
msgstr "关闭"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "编辑"
@@ -1679,6 +1678,215 @@ msgstr "分"
msgid "Second"
msgstr "秒"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "字号"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "仅上传了文件的一部分内容。"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "找不到临时文件夹。"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "将文件写入磁盘失败。"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "因扩展而停止文件上传。"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "上传文件时发生未知错误。"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]"
+"FAQ 1.11[/a]。"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "没有已定义的索引!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "索引"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "唯一"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "紧凑"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "基数"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "注释"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "已删除主键"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "已删除索引 %s "
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "数据库"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "错误"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "影响了 %1$d 行。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "删除了 %1$d 行。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "插入了 %1$d 行。"
+
+#: libraries/RecentTable.class.php:114
+#, fuzzy
+#| msgid "Could not save configuration"
+msgid "Could not save recent table"
+msgstr "无法保存设置"
+
+#: libraries/RecentTable.class.php:149
+#, fuzzy
+#| msgid "Count tables"
+msgid "Recent tables"
+msgstr "统计数据表"
+
+#: libraries/RecentTable.class.php:155
+#, fuzzy
+#| msgid "There are no configured servers"
+msgid "There are no recent tables"
+msgstr "没有配置好的服务器"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "没有该存储引擎的详细信息。"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "%s 在此 MySQL 服务器上可用。"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s 在此 MySQL 服务器上被禁止了。"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "无效的数据库"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "无效的数据表名"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "将表 %1$s 改名为 %2$s 时发生错误"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "已将数据表 %s 改名为 %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr ""
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "找不到主题 %s 对应的图片路径!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "没有可用的预览。"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "确定"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "未找到默认主题 %s !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "未找到主题 %s !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "找不到主题 %s 的路径"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "无法连接:无效的设置。"
@@ -1692,8 +1900,8 @@ msgstr "欢迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"你可能还没有创建配置文件。你可以使用 %1$s设置脚本%2$s 来创建一个配置文件。"
@@ -1797,14 +2005,6 @@ msgstr "PBMS 错误"
msgid "PBMS connection failed:"
msgstr "PBMS 连接失败:"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "错误"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS 获取 BLOB 信息失败:"
@@ -1857,11 +2057,6 @@ msgstr "数据表"
msgid "Data"
msgstr "数据"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "索引"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2140,9 +2335,79 @@ msgstr "没有可上传的文件"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "字号"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "全部"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr ""
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr ""
+
+#: libraries/config.values.php:47
+#, fuzzy
+#| msgid "Height"
+msgid "Right"
+msgstr "高"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "开启"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "关闭"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "结构"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "数据"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "结构和数据"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "快速 - 仅显示必须的设置项"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "自定义 - 显示所有可用的设置项"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "自定义 - 不显示 快速/自定义 选择"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完整插入"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "扩展插入"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "以上兼有"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "以上均不"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2786,12 +3051,6 @@ msgstr "设置导入和导出文件夹以及压缩选项"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "数据库"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "数据库显示选项"
@@ -4339,80 +4598,6 @@ msgstr "使用 PMA 数据时控制用户的密码不能为空"
msgid "Incorrect IP address: %s"
msgstr "%s 是一个错误的 IP 地址"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "全部"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr ""
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr ""
-
-#: libraries/config.values.php:47
-#, fuzzy
-#| msgid "Height"
-msgid "Right"
-msgstr "高"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "开启"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "关闭"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "结构"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "数据"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "结构和数据"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "快速 - 仅显示必须的设置项"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "自定义 - 显示所有可用的设置项"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "自定义 - 不显示 快速/自定义 选择"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完整插入"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "扩展插入"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "以上兼有"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "以上均不"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4483,23 +4668,6 @@ msgstr ""
msgid "Add an event"
msgstr "添加服务器"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "使用配置文件中定义的控制用户连接失败。"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "服务器没有响应"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "详细..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4574,9 +4742,9 @@ msgstr "长度/值"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4635,11 +4803,6 @@ msgstr "安全"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "注释"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4705,6 +4868,23 @@ msgid ""
msgstr ""
"可能接近。参见 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "使用配置文件中定义的控制用户连接失败。"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "服务器没有响应"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(或者本地 MySQL 服务器的套接字没有正确配置)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "详细..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4843,8 +5023,8 @@ msgstr ",@TABLE@ 将变成数据表名"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"这个值是使用 %1$sstrftime%2$s 来解析的,所以你能用时间格式的字符串。另外,下"
"列内容也将被转换:%3$s。其他文本将保持原样。参见%4$s常见问题 (FAQ)%5$s。"
@@ -5578,8 +5758,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr "关于 PBXT 的文档和更多信息请参见 %sPrimeBase XT 主页%s。"
#: libraries/engines/pbxt.lib.php:129
@@ -5871,44 +6051,6 @@ msgstr "视图"
msgid "Export contents"
msgstr "导出内容"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "上传文件的大小超过 php.ini 文件中 upload_max_filesize 的限制。"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "上传文件的大小超过 HTML 表单中指定的 MAX_FILE_SIZE 值。"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "仅上传了文件的一部分内容。"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "找不到临时文件夹。"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "将文件写入磁盘失败。"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "因扩展而停止文件上传。"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "上传文件时发生未知错误。"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"移动上传文件时发生错误,参见 [a@./Documentation.html#faq1_11@Documentation]"
-"FAQ 1.11[/a]。"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5928,6 +6070,40 @@ msgstr "SQL 查询结果"
msgid "Generated by"
msgstr "生成者"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下列结构被创建或修改。你可以:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "点击它的名字查看内容"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "点击相应的“选项”链接修改它的设置"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "点击“结构”链接编辑它的结构"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "转到数据库"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "设置"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "转到数据表"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "转到视图"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5991,40 +6167,6 @@ msgstr "字段名"
msgid "This plugin does not support compressed imports!"
msgstr "该插件不支持导入文件!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下列结构被创建或修改。你可以:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "点击它的名字查看内容"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "点击相应的“选项”链接修改它的设置"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "点击“结构”链接编辑它的结构"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "转到数据库"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "设置"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "转到数据表"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "转到视图"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "导入百分数为小数 (如: 12.00% 将被导入为 .12)"
@@ -6047,40 +6189,6 @@ msgid ""
"the issue and try again."
msgstr "该 XML 文件有错误或者不完整。请修复错误后重试。"
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "没有已定义的索引!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "唯一"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "紧凑"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "基数"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "已删除主键"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "已删除索引 %s "
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一个将可能被删除"
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6091,24 +6199,6 @@ msgstr "无"
msgid "Convert to Kana"
msgstr "转换为假名"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "影响了 %1$d 行。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "删除了 %1$d 行。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "插入了 %1$d 行。"
-
#: libraries/mult_submits.inc.php:254
msgid "From"
msgstr "从"
@@ -6347,24 +6437,6 @@ msgstr "刷新导航框架"
msgid "This format has no options"
msgstr "该格式没有选项"
-#: libraries/RecentTable.class.php:114
-#, fuzzy
-#| msgid "Could not save configuration"
-msgid "Could not save recent table"
-msgstr "无法保存设置"
-
-#: libraries/RecentTable.class.php:149
-#, fuzzy
-#| msgid "Count tables"
-msgid "Recent tables"
-msgstr "统计数据表"
-
-#: libraries/RecentTable.class.php:155
-#, fuzzy
-#| msgid "There are no configured servers"
-msgid "There are no recent tables"
-msgstr "没有配置好的服务器"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "错误"
@@ -6740,6 +6812,61 @@ msgstr "差异"
msgid "Target database"
msgstr "目标数据库"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "在服务器 %s 运行 SQL 查询"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "在数据库 %s 运行 SQL 查询"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "清除"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "字段"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "将此 SQL 查询加为书签"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "让所有用户均可访问此书签"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "替换现有的同名书签"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "不从窗口外覆盖此查询"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "语句定界符"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 在此再次显示此查询 "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "仅查看"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "文本文件的位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "网站服务器上传文件夹"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6799,61 +6926,6 @@ msgstr "无效的标识符"
msgid "Unknown Punctuation String"
msgstr "未知的标点符号字符串"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "在服务器 %s 运行 SQL 查询"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "在数据库 %s 运行 SQL 查询"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "清除"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "字段"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "将此 SQL 查询加为书签"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "让所有用户均可访问此书签"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "替换现有的同名书签"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "不从窗口外覆盖此查询"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "语句定界符"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 在此再次显示此查询 "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "仅查看"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "文本文件的位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "网站服务器上传文件夹"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6862,48 +6934,6 @@ msgid ""
msgstr ""
"SQL 校验程序无法初始化。请检查是否已经安装了%s文档%s内说明的必需 PHP 扩展。"
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "没有该存储引擎的详细信息。"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "%s 在此 MySQL 服务器上可用。"
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s 在此 MySQL 服务器上被禁止了。"
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "此 MySQL 服务器不支持 %s 存储引擎。"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "无效的数据库"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "无效的数据表名"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "将表 %1$s 改名为 %2$s 时发生错误"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "已将数据表 %s 改名为 %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr ""
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "数据表是空的!"
@@ -7014,38 +7044,6 @@ msgstr "分区定义"
msgid "+ Add a value"
msgstr "+ 添加"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "找不到主题 %s 对应的图片路径!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "没有可用的预览。"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "确定"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "未找到默认主题 %s !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "未找到主题 %s !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "找不到主题 %s 的路径"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8043,12 +8041,12 @@ msgstr "删除与用户同名的数据库。"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 权限表取得用户权限。如果用户手动更改表,表内容"
-"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权限%"
-"s。"
+"将可能与服务器使用的用户权限有异。在这种情况下,您应在继续前%s重新载入权"
+"限%s。"
#: server_privileges.php:1764
msgid "The selected user was not found in the privilege table."
@@ -10421,8 +10419,8 @@ msgstr "将视图改名为"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
+#~ "请注意不是所有的结果表都能绘图。参见常见问题 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "添加新用户"
diff --git a/po/zh_TW.po b/po/zh_TW.po
index da85a9399c..648203ee0d 100644
--- a/po/zh_TW.po
+++ b/po/zh_TW.po
@@ -3,14 +3,14 @@ msgid ""
msgstr ""
"Project-Id-Version: phpMyAdmin 3.5.0-dev\n"
"Report-Msgid-Bugs-To: phpmyadmin-devel@lists.sourceforge.net\n"
-"POT-Creation-Date: 2011-06-26 07:33-0400\n"
+"POT-Creation-Date: 2011-06-27 10:29+0200\n"
"PO-Revision-Date: 2011-06-19 09:59+0200\n"
"Last-Translator: \n"
"Language-Team: chinese_traditional \n"
+"Language: zh_TW\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Language: zh_TW\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Pootle 2.0.5\n"
@@ -44,13 +44,13 @@ msgstr ""
msgid "Search"
msgstr "搜尋"
-#: browse_foreigners.php:154 db_operations.php:368 db_operations.php:420
-#: db_operations.php:530 db_operations.php:558 db_search.php:360
+#: browse_foreigners.php:154 db_operations.php:369 db_operations.php:421
+#: db_operations.php:531 db_operations.php:559 db_search.php:360
#: db_structure.php:528 enum_editor.php:63 js/messages.php:90
+#: libraries/Config.class.php:1220 libraries/Theme_Manager.class.php:305
#: libraries/auth/cookie.auth.lib.php:273 libraries/common.lib.php:1315
-#: libraries/common.lib.php:2245 libraries/Config.class.php:1220
-#: libraries/core.lib.php:557 libraries/db_routines.lib.php:789
-#: libraries/db_routines.lib.php:921
+#: libraries/common.lib.php:2245 libraries/core.lib.php:557
+#: libraries/db_routines.lib.php:789 libraries/db_routines.lib.php:921
#: libraries/display_change_password.lib.php:72
#: libraries/display_create_table.lib.php:61
#: libraries/display_export.lib.php:354 libraries/display_import.lib.php:267
@@ -63,18 +63,18 @@ msgstr "搜尋"
#: libraries/select_server.lib.php:100 libraries/sql_query_form.lib.php:384
#: libraries/sql_query_form.lib.php:454 libraries/sql_query_form.lib.php:518
#: libraries/tbl_properties.inc.php:607 libraries/tbl_properties.inc.php:777
-#: libraries/Theme_Manager.class.php:305 main.php:109 navigation.php:202
-#: navigation.php:240 pmd_pdf.php:124 prefs_manage.php:265
-#: prefs_manage.php:316 server_binlog.php:128 server_privileges.php:646
-#: server_privileges.php:1694 server_privileges.php:2051
-#: server_privileges.php:2098 server_privileges.php:2138
-#: server_replication.php:233 server_replication.php:316
-#: server_replication.php:347 server_synchronize.php:1220 tbl_change.php:332
-#: tbl_change.php:1024 tbl_change.php:1061 tbl_indexes.php:260
-#: tbl_operations.php:280 tbl_operations.php:317 tbl_operations.php:519
-#: tbl_operations.php:581 tbl_operations.php:763 tbl_select.php:291
-#: tbl_structure.php:698 tbl_structure.php:734 tbl_tracking.php:425
-#: tbl_tracking.php:563 view_create.php:181 view_operations.php:99
+#: main.php:109 navigation.php:202 navigation.php:240 pmd_pdf.php:124
+#: prefs_manage.php:265 prefs_manage.php:316 server_binlog.php:128
+#: server_privileges.php:646 server_privileges.php:1694
+#: server_privileges.php:2051 server_privileges.php:2098
+#: server_privileges.php:2138 server_replication.php:233
+#: server_replication.php:316 server_replication.php:347
+#: server_synchronize.php:1220 tbl_change.php:332 tbl_change.php:1024
+#: tbl_change.php:1061 tbl_indexes.php:260 tbl_operations.php:280
+#: tbl_operations.php:317 tbl_operations.php:519 tbl_operations.php:581
+#: tbl_operations.php:763 tbl_select.php:291 tbl_structure.php:698
+#: tbl_structure.php:734 tbl_tracking.php:425 tbl_tracking.php:563
+#: view_create.php:181 view_operations.php:99
msgid "Go"
msgstr "執行"
@@ -119,7 +119,7 @@ msgstr "本系統不支援 %s 格式,詳情請參考 www.phpmyadmin.net"
msgid "Database %1$s has been created."
msgstr "建立資料庫 %1$s 成功"
-#: db_datadict.php:48 db_operations.php:361
+#: db_datadict.php:48 db_operations.php:362
msgid "Database comment: "
msgstr "資料庫註釋:"
@@ -129,9 +129,9 @@ msgstr "資料庫註釋:"
msgid "Table comments"
msgstr "表註釋"
-#: db_datadict.php:166 db_qbe.php:196 libraries/export/htmlword.php:248
-#: libraries/export/latex.php:375 libraries/export/odt.php:302
-#: libraries/export/texytext.php:227 libraries/Index.class.php:448
+#: db_datadict.php:166 db_qbe.php:196 libraries/Index.class.php:448
+#: libraries/export/htmlword.php:248 libraries/export/latex.php:375
+#: libraries/export/odt.php:302 libraries/export/texytext.php:227
#: libraries/schema/Pdf_Relation_Schema.class.php:1236
#: libraries/schema/Pdf_Relation_Schema.class.php:1257
#: libraries/tbl_properties.inc.php:274 tbl_change.php:310 tbl_chart.php:86
@@ -140,12 +140,12 @@ msgstr "表註釋"
msgid "Column"
msgstr "欄位"
-#: db_datadict.php:167 db_printview.php:104 libraries/db_events.inc.php:69
-#: libraries/db_routines.lib.php:666 libraries/db_routines.lib.php:691
-#: libraries/db_routines.lib.php:847 libraries/db_routines.lib.php:1216
-#: libraries/db_structure.lib.php:51 libraries/export/htmlword.php:249
-#: libraries/export/latex.php:375 libraries/export/odt.php:305
-#: libraries/export/texytext.php:228 libraries/Index.class.php:445
+#: db_datadict.php:167 db_printview.php:104 libraries/Index.class.php:445
+#: libraries/db_events.inc.php:69 libraries/db_routines.lib.php:666
+#: libraries/db_routines.lib.php:691 libraries/db_routines.lib.php:847
+#: libraries/db_routines.lib.php:1216 libraries/db_structure.lib.php:51
+#: libraries/export/htmlword.php:249 libraries/export/latex.php:375
+#: libraries/export/odt.php:305 libraries/export/texytext.php:228
#: libraries/schema/Pdf_Relation_Schema.class.php:1237
#: libraries/schema/Pdf_Relation_Schema.class.php:1258
#: libraries/tbl_properties.inc.php:100 server_privileges.php:2151
@@ -155,9 +155,9 @@ msgstr "欄位"
msgid "Type"
msgstr "類型"
-#: db_datadict.php:169 libraries/export/htmlword.php:250
-#: libraries/export/latex.php:375 libraries/export/odt.php:308
-#: libraries/export/texytext.php:229 libraries/Index.class.php:451
+#: db_datadict.php:169 libraries/Index.class.php:451
+#: libraries/export/htmlword.php:250 libraries/export/latex.php:375
+#: libraries/export/odt.php:308 libraries/export/texytext.php:229
#: libraries/schema/Pdf_Relation_Schema.class.php:1239
#: libraries/schema/Pdf_Relation_Schema.class.php:1260
#: libraries/tbl_properties.inc.php:109 tbl_change.php:325
@@ -195,13 +195,12 @@ msgstr "連結到"
msgid "Comments"
msgstr "註釋"
-#: db_datadict.php:259 js/messages.php:109
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:361
+#: db_datadict.php:259 js/messages.php:109 libraries/Index.class.php:361
#: libraries/Index.class.php:388 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:287
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:287
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:130
#: server_privileges.php:1381 server_privileges.php:1392
@@ -212,17 +211,17 @@ msgstr "註釋"
msgid "No"
msgstr "否"
-#: db_datadict.php:259 js/messages.php:108
-#: libraries/config/FormDisplay.tpl.php:204 libraries/config.values.php:45
-#: libraries/config.values.php:51 libraries/export/htmlword.php:326
-#: libraries/export/latex.php:445 libraries/export/odt.php:376
-#: libraries/export/texytext.php:305 libraries/Index.class.php:362
+#: db_datadict.php:259 js/messages.php:108 libraries/Index.class.php:362
#: libraries/Index.class.php:387 libraries/Index.class.php:688
-#: libraries/mult_submits.inc.php:46 libraries/mult_submits.inc.php:78
-#: libraries/mult_submits.inc.php:87 libraries/mult_submits.inc.php:92
-#: libraries/mult_submits.inc.php:97 libraries/mult_submits.inc.php:102
-#: libraries/mult_submits.inc.php:262 libraries/mult_submits.inc.php:276
-#: libraries/mult_submits.inc.php:286 libraries/mult_submits.inc.php:299
+#: libraries/config.values.php:45 libraries/config.values.php:51
+#: libraries/config/FormDisplay.tpl.php:204 libraries/export/htmlword.php:326
+#: libraries/export/latex.php:445 libraries/export/odt.php:376
+#: libraries/export/texytext.php:305 libraries/mult_submits.inc.php:46
+#: libraries/mult_submits.inc.php:78 libraries/mult_submits.inc.php:87
+#: libraries/mult_submits.inc.php:92 libraries/mult_submits.inc.php:97
+#: libraries/mult_submits.inc.php:102 libraries/mult_submits.inc.php:262
+#: libraries/mult_submits.inc.php:276 libraries/mult_submits.inc.php:286
+#: libraries/mult_submits.inc.php:299
#: libraries/schema/Pdf_Relation_Schema.class.php:1318
#: libraries/user_preferences.lib.php:311 prefs_manage.php:129
#: server_databases.php:76 server_privileges.php:1378
@@ -259,79 +258,79 @@ msgstr "全不選"
msgid "The database name is empty!"
msgstr "資料庫名不能爲空!"
-#: db_operations.php:271
+#: db_operations.php:272
#, php-format
msgid "Database %s has been renamed to %s"
msgstr "資料庫 %s 已變更名稱為 %s"
-#: db_operations.php:275
+#: db_operations.php:276
#, php-format
msgid "Database %s has been copied to %s"
msgstr "已將資料庫 %s 複製爲 %s"
-#: db_operations.php:403
+#: db_operations.php:404
msgid "Rename database to"
msgstr "將資料庫改名為"
-#: db_operations.php:408 server_status.php:799
+#: db_operations.php:409 server_status.php:799
msgid "Command"
msgstr "命令"
-#: db_operations.php:439
+#: db_operations.php:440
msgid "Remove database"
msgstr "刪除資料庫"
-#: db_operations.php:451
+#: db_operations.php:452
#, php-format
msgid "Database %s has been dropped."
msgstr "已被刪除資料庫 %s "
-#: db_operations.php:456
+#: db_operations.php:457
msgid "Drop the database (DROP)"
msgstr "刪除資料庫 (DROP)"
-#: db_operations.php:486
+#: db_operations.php:487
msgid "Copy database to"
msgstr "複製資料庫到"
-#: db_operations.php:493 tbl_operations.php:548 tbl_tracking.php:418
+#: db_operations.php:494 tbl_operations.php:548 tbl_tracking.php:418
msgid "Structure only"
msgstr "僅結構"
-#: db_operations.php:494 tbl_operations.php:549 tbl_tracking.php:420
+#: db_operations.php:495 tbl_operations.php:549 tbl_tracking.php:420
msgid "Structure and data"
msgstr "結構和資料"
-#: db_operations.php:495 tbl_operations.php:550 tbl_tracking.php:419
+#: db_operations.php:496 tbl_operations.php:550 tbl_tracking.php:419
msgid "Data only"
msgstr "僅資料"
-#: db_operations.php:503
+#: db_operations.php:504
msgid "CREATE DATABASE before copying"
msgstr "複製前建立資料庫 (CREATE DATABASE)"
-#: db_operations.php:506 libraries/config/messages.inc.php:126
+#: db_operations.php:507 libraries/config/messages.inc.php:126
#: libraries/config/messages.inc.php:127 libraries/config/messages.inc.php:129
#: libraries/config/messages.inc.php:135 tbl_operations.php:556
#, php-format
msgid "Add %s"
msgstr "新增 %s"
-#: db_operations.php:510 libraries/config/messages.inc.php:119
+#: db_operations.php:511 libraries/config/messages.inc.php:119
#: tbl_operations.php:314 tbl_operations.php:558
msgid "Add AUTO_INCREMENT value"
msgstr "新增自動遞增(AUTO_INCREMENT)數值"
-#: db_operations.php:514 tbl_operations.php:565
+#: db_operations.php:515 tbl_operations.php:565
msgid "Add constraints"
msgstr "新增 constraints"
-#: db_operations.php:527
+#: db_operations.php:528
msgid "Switch to copied database"
msgstr "切換到複製的資料庫"
-#: db_operations.php:551 libraries/build_html_for_db.lib.php:19
-#: libraries/db_structure.lib.php:53 libraries/Index.class.php:450
+#: db_operations.php:552 libraries/Index.class.php:450
+#: libraries/build_html_for_db.lib.php:19 libraries/db_structure.lib.php:53
#: libraries/mysql_charsets.lib.php:110 libraries/tbl_properties.inc.php:107
#: libraries/tbl_properties.inc.php:720 server_collations.php:53
#: server_collations.php:65 tbl_operations.php:378 tbl_select.php:115
@@ -340,14 +339,14 @@ msgstr "切換到複製的資料庫"
msgid "Collation"
msgstr "排序規則"
-#: db_operations.php:564
+#: db_operations.php:565
#, php-format
msgid ""
"The phpMyAdmin configuration storage has been deactivated. To find out why "
"click %shere%s."
msgstr "phpMyAdmin 設定儲存功能未能啟動, %s請按此%s 查出問題原因."
-#: db_operations.php:599
+#: db_operations.php:600
msgid "Edit or export relational schema"
msgstr "編輯或匯出關聯大綱"
@@ -492,109 +491,109 @@ msgstr "在資料庫 %s 執行 SQL 指令:"
msgid "Submit Query"
msgstr "送出查詢"
-#: db_routines.php:152 import.php:453 libraries/display_tbl.lib.php:2272
-#: libraries/Message.class.php:185 libraries/sql_query_form.lib.php:139
+#: db_routines.php:154 import.php:453 libraries/Message.class.php:185
+#: libraries/display_tbl.lib.php:2272 libraries/sql_query_form.lib.php:139
#: tbl_operations.php:228 tbl_relation.php:289 tbl_row_action.php:126
#: view_operations.php:60
msgid "Your SQL query has been executed successfully"
msgstr "您的 SQL 語法已順利執行"
-#: db_routines.php:155
+#: db_routines.php:157
#, php-format
msgid "%d row affected by the last statement inside the procedure"
msgid_plural "%d rows affected by the last statement inside the procedure"
msgstr[0] ""
-#: db_routines.php:165
+#: db_routines.php:167
#, fuzzy, php-format
#| msgid "Allows executing stored routines."
msgid "Execution results of routine %s"
msgstr "允許運行 Procedure"
-#: db_routines.php:185 libraries/import.lib.php:153 sql.php:678
+#: db_routines.php:187 libraries/import.lib.php:153 sql.php:678
#: tbl_change.php:180 tbl_get_field.php:34
msgid "MySQL returned an empty result set (i.e. zero rows)."
msgstr "MySQL 返回的查詢結果爲空 (即零行)"
-#: db_routines.php:190 db_routines.php:295 db_routines.php:300
-#: db_routines.php:324
+#: db_routines.php:192 db_routines.php:297 db_routines.php:302
+#: db_routines.php:326
#, fuzzy, php-format
#| msgid "The following queries have been executed:"
msgid "The following query has failed: \"%s\""
msgstr "下列查詢被執行:"
-#: db_routines.php:191 db_routines.php:296 db_routines.php:301
-#: db_routines.php:311 db_routines.php:325 libraries/common.lib.php:609
+#: db_routines.php:193 db_routines.php:298 db_routines.php:303
+#: db_routines.php:313 db_routines.php:327 libraries/common.lib.php:609
msgid "MySQL said: "
msgstr "MySQL 返回:"
-#: db_routines.php:208 db_routines.php:240 db_routines.php:268
-#: db_routines.php:407
+#: db_routines.php:210 db_routines.php:242 db_routines.php:270
+#: db_routines.php:409
#, fuzzy
#| msgid "Error in Processing Request"
msgid "Error in processing request"
msgstr "要求處理得程序中有錯誤"
-#: db_routines.php:209 db_routines.php:241 db_routines.php:269
-#: db_routines.php:408
+#: db_routines.php:211 db_routines.php:243 db_routines.php:271
+#: db_routines.php:410
#, fuzzy, php-format
#| msgid "No tables found in database"
msgid "No routine with name %1$s found in database %2$s"
msgstr "沒有在資料庫中找到表"
-#: db_routines.php:230 db_routines.php:234
+#: db_routines.php:232 db_routines.php:236
msgid "Execute routine"
msgstr ""
-#: db_routines.php:259 db_routines.php:263
+#: db_routines.php:261 db_routines.php:265
#, fuzzy, php-format
#| msgid "Export defaults"
msgid "Export of routine %s"
msgstr "匯出選項"
-#: db_routines.php:288 libraries/db_routines.lib.php:960
+#: db_routines.php:290 libraries/db_routines.lib.php:960
#, fuzzy, php-format
#| msgid "Invalid server index: %s"
msgid "Invalid routine type: \"%s\""
msgstr "無效的伺服器索引: %s"
-#: db_routines.php:309
+#: db_routines.php:311
msgid "Sorry, we failed to restore the dropped routine."
msgstr ""
-#: db_routines.php:310
+#: db_routines.php:312
msgid "The backed up query was:"
msgstr ""
-#: db_routines.php:314
+#: db_routines.php:316
#, fuzzy, php-format
#| msgid "Column %s has been dropped"
msgid "Routine %1$s has been modified."
msgstr "已刪除欄位 %s "
-#: db_routines.php:327
+#: db_routines.php:329
#, fuzzy, php-format
#| msgid "Table %1$s has been created."
msgid "Routine %1$s has been created."
msgstr "建立資料表 %1$s 成功"
-#: db_routines.php:335
+#: db_routines.php:337
msgid "One or more errors have occured while processing your request:"
msgstr ""
-#: db_routines.php:379
+#: db_routines.php:381
#, fuzzy
#| msgid "Create relation"
msgid "Create routine"
msgstr "建立關聯"
-#: db_routines.php:383
+#: db_routines.php:385
#, fuzzy
#| msgid "Edit mode"
msgid "Edit routine"
msgstr "編輯模式"
-#: db_routines.php:434
+#: db_routines.php:436
msgid ""
"You are using PHP's deprecated 'mysql' extension, which is not capable of "
"handling multi queries. The execution of some stored routines may fail!"
@@ -722,8 +721,8 @@ msgstr "追蹤已停用"
#: db_structure.php:372 libraries/display_tbl.lib.php:2235
#, php-format
msgid ""
-"This view has at least this number of rows. Please refer to %sdocumentation%"
-"s."
+"This view has at least this number of rows. Please refer to %sdocumentation"
+"%s."
msgstr "這個檢視至少需包含這個數目的資料,請參考%sdocumentation%s。"
#: db_structure.php:386 db_structure.php:400 libraries/header.inc.php:152
@@ -790,8 +789,8 @@ msgstr "列印預覽"
msgid "Empty"
msgstr "清空"
-#: db_structure.php:504 db_tracking.php:104 libraries/common.lib.php:2956
-#: libraries/common.lib.php:2957 libraries/Index.class.php:490
+#: db_structure.php:504 db_tracking.php:104 libraries/Index.class.php:490
+#: libraries/common.lib.php:2956 libraries/common.lib.php:2957
#: server_databases.php:266 tbl_structure.php:153 tbl_structure.php:154
#: tbl_structure.php:603
msgid "Drop"
@@ -864,9 +863,9 @@ msgstr "更新"
msgid "Status"
msgstr "狀態"
-#: db_tracking.php:90 libraries/db_events.inc.php:68
-#: libraries/db_routines.lib.php:1215 libraries/db_structure.lib.php:44
-#: libraries/display_triggers.inc.php:76 libraries/Index.class.php:442
+#: db_tracking.php:90 libraries/Index.class.php:442
+#: libraries/db_events.inc.php:68 libraries/db_routines.lib.php:1215
+#: libraries/db_structure.lib.php:44 libraries/display_triggers.inc.php:76
#: server_databases.php:191 server_privileges.php:1612
#: server_privileges.php:1805 server_privileges.php:2154 tbl_structure.php:214
msgid "Action"
@@ -958,8 +957,8 @@ msgstr "備份資料已儲存至檔案 %s."
#: import.php:58
#, php-format
msgid ""
-"You probably tried to upload too large file. Please refer to %sdocumentation%"
-"s for ways to workaround this limit."
+"You probably tried to upload too large file. Please refer to %sdocumentation"
+"%s for ways to workaround this limit."
msgstr "您上傳的檔案過大, 請查看此 %s 文件 %s 了解如何解決此限制."
#: import.php:278 import.php:331 libraries/File.class.php:501
@@ -1133,11 +1132,11 @@ msgstr "正在刪除選中的使用者"
msgid "Close"
msgstr "關閉"
-#: js/messages.php:62 js/messages.php:132 libraries/common.lib.php:594
-#: libraries/common.lib.php:1144 libraries/common.lib.php:2960
-#: libraries/common.lib.php:2961 libraries/config/messages.inc.php:471
-#: libraries/display_tbl.lib.php:1287 libraries/import.lib.php:1150
-#: libraries/import.lib.php:1174 libraries/Index.class.php:468
+#: js/messages.php:62 js/messages.php:132 libraries/Index.class.php:468
+#: libraries/common.lib.php:594 libraries/common.lib.php:1144
+#: libraries/common.lib.php:2960 libraries/common.lib.php:2961
+#: libraries/config/messages.inc.php:471 libraries/display_tbl.lib.php:1287
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
#: libraries/schema/User_Schema.class.php:164 setup/frames/index.inc.php:137
msgid "Edit"
msgstr "編輯"
@@ -1670,6 +1669,209 @@ msgstr "分"
msgid "Second"
msgstr "秒"
+#: libraries/Config.class.php:1190
+msgid "Font size"
+msgstr "字體大小"
+
+#: libraries/File.class.php:310
+msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
+msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制"
+
+#: libraries/File.class.php:313
+msgid ""
+"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
+"the HTML form."
+msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值"
+
+#: libraries/File.class.php:316
+msgid "The uploaded file was only partially uploaded."
+msgstr "僅上傳了檔案的一部分內容"
+
+#: libraries/File.class.php:319
+msgid "Missing a temporary folder."
+msgstr "找不到臨時資料夾"
+
+#: libraries/File.class.php:322
+msgid "Failed to write file to disk."
+msgstr "將檔案寫入硬碟失敗"
+
+#: libraries/File.class.php:325
+msgid "File upload stopped by extension."
+msgstr "因外掛而停止檔案上傳"
+
+#: libraries/File.class.php:328
+msgid "Unknown error in file upload."
+msgstr "上傳檔案時發生未知錯誤"
+
+#: libraries/File.class.php:559
+msgid ""
+"Error moving the uploaded file, see [a@./Documentation."
+"html#faq1_11@Documentation]FAQ 1.11[/a]"
+msgstr ""
+"移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]"
+"FAQ 1.11[/a]。"
+
+#: libraries/Index.class.php:430 tbl_relation.php:526
+msgid "No index defined!"
+msgstr "沒有已定義的索引!"
+
+#: libraries/Index.class.php:435 libraries/build_html_for_db.lib.php:40
+#: tbl_tracking.php:309
+msgid "Indexes"
+msgstr "索引"
+
+#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
+#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
+#: tbl_tracking.php:315
+msgid "Unique"
+msgstr "唯一"
+
+#: libraries/Index.class.php:447 tbl_tracking.php:316
+msgid "Packed"
+msgstr "緊湊"
+
+#: libraries/Index.class.php:449 tbl_tracking.php:318
+msgid "Cardinality"
+msgstr "基數"
+
+#: libraries/Index.class.php:452 libraries/db_routines.lib.php:777
+#: tbl_tracking.php:272 tbl_tracking.php:321
+msgid "Comment"
+msgstr "註解"
+
+#: libraries/Index.class.php:474
+msgid "The primary key has been dropped"
+msgstr "已刪除主鍵"
+
+#: libraries/Index.class.php:478
+#, php-format
+msgid "Index %s has been dropped"
+msgstr "已刪除索引 %s "
+
+#: libraries/Index.class.php:582
+#, php-format
+msgid ""
+"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
+"removed."
+msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除"
+
+#: libraries/List_Database.class.php:430 libraries/config/messages.inc.php:177
+#: libraries/server_links.inc.php:43 server_databases.php:100
+#: server_privileges.php:1740
+msgid "Databases"
+msgstr "資料庫"
+
+#: libraries/Message.class.php:205 libraries/blobstreaming.lib.php:308
+#: libraries/blobstreaming.lib.php:314 libraries/common.lib.php:561
+#: libraries/core.lib.php:232 libraries/import.lib.php:136 tbl_change.php:883
+#: tbl_operations.php:228 tbl_relation.php:287 view_operations.php:60
+msgid "Error"
+msgstr "錯誤"
+
+#: libraries/Message.class.php:260
+#, php-format
+msgid "%1$d row affected."
+msgid_plural "%1$d rows affected."
+msgstr[0] "影響了 %1$d 行。"
+
+#: libraries/Message.class.php:279
+#, php-format
+msgid "%1$d row deleted."
+msgid_plural "%1$d rows deleted."
+msgstr[0] "刪除了 %1$d 行。"
+
+#: libraries/Message.class.php:298
+#, php-format
+msgid "%1$d row inserted."
+msgid_plural "%1$d rows inserted."
+msgstr[0] "插入了 %1$d 行。"
+
+#: libraries/RecentTable.class.php:114
+msgid "Could not save recent table"
+msgstr "無法儲存最新資料表"
+
+#: libraries/RecentTable.class.php:149
+msgid "Recent tables"
+msgstr "最新資料表"
+
+#: libraries/RecentTable.class.php:155
+msgid "There are no recent tables"
+msgstr "沒有最新資料表"
+
+#: libraries/StorageEngine.class.php:195
+msgid ""
+"There is no detailed status information available for this storage engine."
+msgstr "沒有該儲存引擎的詳細狀態資訊"
+
+#: libraries/StorageEngine.class.php:355
+#, php-format
+msgid "%s is available on this MySQL server."
+msgstr "MySQL 伺服器支援 %s"
+
+#: libraries/StorageEngine.class.php:358
+#, php-format
+msgid "%s has been disabled for this MySQL server."
+msgstr "%s 在此 MySQL 伺服器上被禁止了"
+
+#: libraries/StorageEngine.class.php:362
+#, php-format
+msgid "This MySQL server does not support the %s storage engine."
+msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
+
+#: libraries/Table.class.php:1027
+msgid "Invalid database"
+msgstr "無效的資料庫"
+
+#: libraries/Table.class.php:1041 tbl_get_field.php:25
+msgid "Invalid table name"
+msgstr "無效的資料資料表名稱"
+
+#: libraries/Table.class.php:1056
+#, php-format
+msgid "Error renaming table %1$s to %2$s"
+msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
+
+#: libraries/Table.class.php:1139
+#, php-format
+msgid "Table %s has been renamed to %s"
+msgstr "已將資料表 %s 改名爲 %s"
+
+#: libraries/Table.class.php:1272
+msgid "Could not save table UI preferences"
+msgstr "無法儲存表格介面使用者喜好設定"
+
+#: libraries/Theme.class.php:160
+#, php-format
+msgid "No valid image path for theme %s found!"
+msgstr "找不到佈景主題 %s 指定圖片路徑!"
+
+#: libraries/Theme.class.php:380
+msgid "No preview available."
+msgstr "沒有可用的預覽。"
+
+#: libraries/Theme.class.php:383
+msgid "take it"
+msgstr "確定"
+
+#: libraries/Theme_Manager.class.php:109
+#, php-format
+msgid "Default theme %s not found!"
+msgstr "未找到預設主題 %s !"
+
+#: libraries/Theme_Manager.class.php:147
+#, php-format
+msgid "Theme %s not found!"
+msgstr "未找到主題 %s !"
+
+#: libraries/Theme_Manager.class.php:215
+#, php-format
+msgid "Theme path not found for theme %s!"
+msgstr "找不到主題 %s 的路徑"
+
+#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
+msgid "Theme"
+msgstr ""
+
#: libraries/auth/config.auth.lib.php:76
msgid "Cannot connect: invalid settings."
msgstr "無法連線: 設定錯誤."
@@ -1683,8 +1885,8 @@ msgstr "歡迎使用 %s"
#: libraries/auth/config.auth.lib.php:106
#, php-format
msgid ""
-"You probably did not create a configuration file. You might want to use the %"
-"1$ssetup script%2$s to create one."
+"You probably did not create a configuration file. You might want to use the "
+"%1$ssetup script%2$s to create one."
msgstr ""
"您可能還沒有建立設定檔案。您可以使用 %1$s設定指令%2$s 來建立一個設定檔案"
@@ -1786,14 +1988,6 @@ msgstr "PBMS 錯誤"
msgid "PBMS connection failed:"
msgstr "PBMS 連線失敗"
-#: libraries/blobstreaming.lib.php:308 libraries/blobstreaming.lib.php:314
-#: libraries/common.lib.php:561 libraries/core.lib.php:232
-#: libraries/import.lib.php:136 libraries/Message.class.php:205
-#: tbl_change.php:883 tbl_operations.php:228 tbl_relation.php:287
-#: view_operations.php:60
-msgid "Error"
-msgstr "錯誤"
-
#: libraries/blobstreaming.lib.php:312
msgid "PBMS get BLOB info failed:"
msgstr "PBMS 取得 BLOB 資訊失敗:"
@@ -1846,11 +2040,6 @@ msgstr "資料表"
msgid "Data"
msgstr "資料"
-#: libraries/build_html_for_db.lib.php:40 libraries/Index.class.php:435
-#: tbl_tracking.php:309
-msgid "Indexes"
-msgstr "索引"
-
#: libraries/build_html_for_db.lib.php:50 libraries/db_structure.lib.php:60
#: tbl_printview.php:333 tbl_structure.php:818
msgid "Overhead"
@@ -2129,9 +2318,77 @@ msgstr "沒有可上傳的檔案"
msgid "Execute"
msgstr ""
-#: libraries/Config.class.php:1190
-msgid "Font size"
-msgstr "字體大小"
+#: libraries/config.values.php:45 libraries/config.values.php:47
+#: libraries/config.values.php:51
+msgid "Both"
+msgstr "全部"
+
+#: libraries/config.values.php:47
+msgid "Nowhere"
+msgstr "全部皆否"
+
+#: libraries/config.values.php:47
+msgid "Left"
+msgstr "左"
+
+#: libraries/config.values.php:47
+msgid "Right"
+msgstr "右"
+
+#: libraries/config.values.php:75
+msgid "Open"
+msgstr "開啓"
+
+#: libraries/config.values.php:75
+msgid "Closed"
+msgstr "關閉"
+
+#: libraries/config.values.php:96 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:122 libraries/export/texytext.php:24
+#: libraries/import.lib.php:1172
+msgid "structure"
+msgstr "結構"
+
+#: libraries/config.values.php:97 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:123 libraries/export/texytext.php:24
+msgid "data"
+msgstr "資料"
+
+#: libraries/config.values.php:98 libraries/export/htmlword.php:25
+#: libraries/export/latex.php:42 libraries/export/odt.php:34
+#: libraries/export/sql.php:124 libraries/export/texytext.php:24
+msgid "structure and data"
+msgstr "結構和資料"
+
+#: libraries/config.values.php:100
+msgid "Quick - display only the minimal options to configure"
+msgstr "快速 - 僅顯示必須的設定項"
+
+#: libraries/config.values.php:101
+msgid "Custom - display all possible options to configure"
+msgstr "自訂 - 顯示所有可用的設定項"
+
+#: libraries/config.values.php:102
+msgid "Custom - like above, but without the quick/custom choice"
+msgstr "自訂 - 不顯示 快速/自訂 選擇"
+
+#: libraries/config.values.php:120
+msgid "complete inserts"
+msgstr "完整插入"
+
+#: libraries/config.values.php:121
+msgid "extended inserts"
+msgstr "外掛插入"
+
+#: libraries/config.values.php:122
+msgid "both of the above"
+msgstr "以上兼有"
+
+#: libraries/config.values.php:123
+msgid "neither of the above"
+msgstr "以上均不"
#: libraries/config/FormDisplay.class.php:83
#: libraries/config/validate.lib.php:422
@@ -2775,12 +3032,6 @@ msgstr "設定匯入和匯出資料夾以及壓縮選項"
msgid "LaTeX"
msgstr "LaTeX"
-#: libraries/config/messages.inc.php:177 libraries/List_Database.class.php:430
-#: libraries/server_links.inc.php:43 server_databases.php:100
-#: server_privileges.php:1740
-msgid "Databases"
-msgstr "資料庫"
-
#: libraries/config/messages.inc.php:178
msgid "Databases display options"
msgstr "資料庫顯示選項"
@@ -4314,78 +4565,6 @@ msgstr "使用 PMA 資料時控制使用者的密碼不能爲空"
msgid "Incorrect IP address: %s"
msgstr "%s 是一個錯誤的 IP 網址"
-#: libraries/config.values.php:45 libraries/config.values.php:47
-#: libraries/config.values.php:51
-msgid "Both"
-msgstr "全部"
-
-#: libraries/config.values.php:47
-msgid "Nowhere"
-msgstr "全部皆否"
-
-#: libraries/config.values.php:47
-msgid "Left"
-msgstr "左"
-
-#: libraries/config.values.php:47
-msgid "Right"
-msgstr "右"
-
-#: libraries/config.values.php:75
-msgid "Open"
-msgstr "開啓"
-
-#: libraries/config.values.php:75
-msgid "Closed"
-msgstr "關閉"
-
-#: libraries/config.values.php:96 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:122 libraries/export/texytext.php:24
-#: libraries/import.lib.php:1172
-msgid "structure"
-msgstr "結構"
-
-#: libraries/config.values.php:97 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:123 libraries/export/texytext.php:24
-msgid "data"
-msgstr "資料"
-
-#: libraries/config.values.php:98 libraries/export/htmlword.php:25
-#: libraries/export/latex.php:42 libraries/export/odt.php:34
-#: libraries/export/sql.php:124 libraries/export/texytext.php:24
-msgid "structure and data"
-msgstr "結構和資料"
-
-#: libraries/config.values.php:100
-msgid "Quick - display only the minimal options to configure"
-msgstr "快速 - 僅顯示必須的設定項"
-
-#: libraries/config.values.php:101
-msgid "Custom - display all possible options to configure"
-msgstr "自訂 - 顯示所有可用的設定項"
-
-#: libraries/config.values.php:102
-msgid "Custom - like above, but without the quick/custom choice"
-msgstr "自訂 - 不顯示 快速/自訂 選擇"
-
-#: libraries/config.values.php:120
-msgid "complete inserts"
-msgstr "完整插入"
-
-#: libraries/config.values.php:121
-msgid "extended inserts"
-msgstr "外掛插入"
-
-#: libraries/config.values.php:122
-msgid "both of the above"
-msgstr "以上兼有"
-
-#: libraries/config.values.php:123
-msgid "neither of the above"
-msgstr "以上均不"
-
#. l10n: Language to use for PHP documentation, please use only languages which do exist in official documentation.
#: libraries/core.lib.php:264
msgctxt "PHP documentation language"
@@ -4456,23 +4635,6 @@ msgstr ""
msgid "Add an event"
msgstr "新增伺服器"
-#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
-msgid "Connection for controluser as defined in your configuration failed."
-msgstr "使用設定檔案中定義的控制使用者連線失敗"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
-#: libraries/dbi/mysqli.dbi.lib.php:395
-msgid "The server is not responding"
-msgstr "伺服器沒有響應"
-
-#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
-msgid "(or the local MySQL server's socket is not correctly configured)"
-msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
-
-#: libraries/dbi/mysql.dbi.lib.php:346
-msgid "Details..."
-msgstr "詳細..."
-
#: libraries/db_links.inc.php:42 libraries/db_links.inc.php:43
#: libraries/db_links.inc.php:44
msgid "Database seems to be empty!"
@@ -4547,9 +4709,9 @@ msgstr "長度/值"
#: libraries/export/php_array.php:29 libraries/export/sql.php:83
#: libraries/export/texytext.php:31 libraries/export/xls.php:29
#: libraries/export/xlsx.php:29 libraries/export/xml.php:25
-#: libraries/export/yaml.php:30 libraries/import/csv.php:33
+#: libraries/export/yaml.php:30 libraries/import.lib.php:1145
+#: libraries/import.lib.php:1167 libraries/import/csv.php:33
#: libraries/import/docsql.php:35 libraries/import/ldi.php:49
-#: libraries/import.lib.php:1145 libraries/import.lib.php:1167
#: libraries/import/ods.php:32 libraries/import/sql.php:20
#: libraries/import/xls.php:28 libraries/import/xlsx.php:28
#: libraries/import/xml.php:25 tbl_select.php:231 tbl_structure.php:889
@@ -4606,11 +4768,6 @@ msgstr "安全"
msgid "SQL data access"
msgstr ""
-#: libraries/db_routines.lib.php:777 libraries/Index.class.php:452
-#: tbl_tracking.php:272 tbl_tracking.php:321
-msgid "Comment"
-msgstr "註解"
-
#: libraries/db_routines.lib.php:839 libraries/db_routines.lib.php:842
#, fuzzy
#| msgid "Routines"
@@ -4676,6 +4833,23 @@ msgid ""
msgstr ""
"可能接近。參見 [a@./Documentation.html#faq3_11@Documentation]FAQ 3.11[/a]"
+#: libraries/dbi/mysql.dbi.lib.php:111 libraries/dbi/mysqli.dbi.lib.php:122
+msgid "Connection for controluser as defined in your configuration failed."
+msgstr "使用設定檔案中定義的控制使用者連線失敗"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysql.dbi.lib.php:339
+#: libraries/dbi/mysqli.dbi.lib.php:395
+msgid "The server is not responding"
+msgstr "伺服器沒有響應"
+
+#: libraries/dbi/mysql.dbi.lib.php:337 libraries/dbi/mysqli.dbi.lib.php:395
+msgid "(or the local MySQL server's socket is not correctly configured)"
+msgstr "(或者本地 MySQL 伺服器的連線埠沒有正確設定)"
+
+#: libraries/dbi/mysql.dbi.lib.php:346
+msgid "Details..."
+msgstr "詳細..."
+
#: libraries/display_change_password.lib.php:29 main.php:94
#: user_password.php:119 user_password.php:137
msgid "Change password"
@@ -4816,8 +4990,8 @@ msgstr ",@TABLE@ 將變成資料資料表名稱"
#, php-format
msgid ""
"This value is interpreted using %1$sstrftime%2$s, so you can use time "
-"formatting strings. Additionally the following transformations will happen: %"
-"3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
+"formatting strings. Additionally the following transformations will happen: "
+"%3$s. Other text will be kept as is. See the %4$sFAQ%5$s for details."
msgstr ""
"這個值是使用 %1$sstrftime%2$s 來解析的,所以您能用時間格式的字元串。另外,下"
"列內容也將被轉換:%3$s。其他文字將保持原樣。參見%4$s常見問題 (FAQ)%5$s"
@@ -5549,8 +5723,8 @@ msgstr ""
#: libraries/engines/pbxt.lib.php:125
#, php-format
msgid ""
-"Documentation and further information about PBXT can be found on the %"
-"sPrimeBase XT Home Page%s."
+"Documentation and further information about PBXT can be found on the "
+"%sPrimeBase XT Home Page%s."
msgstr "關於 PBXT 的檔案和更多資訊請參見 %sPrimeBase XT 首頁%s"
#: libraries/engines/pbxt.lib.php:129
@@ -5844,44 +6018,6 @@ msgstr " view"
msgid "Export contents"
msgstr "匯出內容"
-#: libraries/File.class.php:310
-msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini."
-msgstr "上傳檔案的大小超過 php.ini 檔案中 upload_max_filesize 的限制"
-
-#: libraries/File.class.php:313
-msgid ""
-"The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
-"the HTML form."
-msgstr "上傳檔案的大小超過 HTML 表單中指定的 MAX_FILE_SIZE 值"
-
-#: libraries/File.class.php:316
-msgid "The uploaded file was only partially uploaded."
-msgstr "僅上傳了檔案的一部分內容"
-
-#: libraries/File.class.php:319
-msgid "Missing a temporary folder."
-msgstr "找不到臨時資料夾"
-
-#: libraries/File.class.php:322
-msgid "Failed to write file to disk."
-msgstr "將檔案寫入硬碟失敗"
-
-#: libraries/File.class.php:325
-msgid "File upload stopped by extension."
-msgstr "因外掛而停止檔案上傳"
-
-#: libraries/File.class.php:328
-msgid "Unknown error in file upload."
-msgstr "上傳檔案時發生未知錯誤"
-
-#: libraries/File.class.php:559
-msgid ""
-"Error moving the uploaded file, see [a@./Documentation."
-"html#faq1_11@Documentation]FAQ 1.11[/a]"
-msgstr ""
-"移動上傳文件時發生錯誤,參見 [a@./Documentation.html#faq1_11@Documentation]"
-"FAQ 1.11[/a]。"
-
#: libraries/footer.inc.php:188 libraries/footer.inc.php:191
#: libraries/footer.inc.php:194
msgid "Open new phpMyAdmin window"
@@ -5901,6 +6037,40 @@ msgstr "SQL 查詢結果"
msgid "Generated by"
msgstr "產生者"
+#: libraries/import.lib.php:1141
+msgid ""
+"The following structures have either been created or altered. Here you can:"
+msgstr "下列結構被建立或修改。您可以:"
+
+#: libraries/import.lib.php:1142
+msgid "View a structure`s contents by clicking on its name"
+msgstr "點選它的名字查看內容"
+
+#: libraries/import.lib.php:1143
+msgid ""
+"Change any of its settings by clicking the corresponding \"Options\" link"
+msgstr "點選相應的“選項”連結修改它的設定"
+
+#: libraries/import.lib.php:1144
+msgid "Edit its structure by following the \"Structure\" link"
+msgstr "點選“結構”連結編輯它的結構"
+
+#: libraries/import.lib.php:1147
+msgid "Go to database"
+msgstr "轉到資料庫"
+
+#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
+msgid "settings"
+msgstr "設定"
+
+#: libraries/import.lib.php:1169
+msgid "Go to table"
+msgstr "轉到資料表"
+
+#: libraries/import.lib.php:1178
+msgid "Go to view"
+msgstr "轉到 view"
+
#: libraries/import/csv.php:38 libraries/import/ods.php:26
#: libraries/import/xls.php:25 libraries/import/xlsx.php:25
msgid ""
@@ -5964,40 +6134,6 @@ msgstr "欄位名稱"
msgid "This plugin does not support compressed imports!"
msgstr "該插件不支援匯入檔案!"
-#: libraries/import.lib.php:1141
-msgid ""
-"The following structures have either been created or altered. Here you can:"
-msgstr "下列結構被建立或修改。您可以:"
-
-#: libraries/import.lib.php:1142
-msgid "View a structure`s contents by clicking on its name"
-msgstr "點選它的名字查看內容"
-
-#: libraries/import.lib.php:1143
-msgid ""
-"Change any of its settings by clicking the corresponding \"Options\" link"
-msgstr "點選相應的“選項”連結修改它的設定"
-
-#: libraries/import.lib.php:1144
-msgid "Edit its structure by following the \"Structure\" link"
-msgstr "點選“結構”連結編輯它的結構"
-
-#: libraries/import.lib.php:1147
-msgid "Go to database"
-msgstr "轉到資料庫"
-
-#: libraries/import.lib.php:1150 libraries/import.lib.php:1174
-msgid "settings"
-msgstr "設定"
-
-#: libraries/import.lib.php:1169
-msgid "Go to table"
-msgstr "轉到資料表"
-
-#: libraries/import.lib.php:1178
-msgid "Go to view"
-msgstr "轉到 view"
-
#: libraries/import/ods.php:28
msgid "Import percentages as proper decimals (ex. 12.00% to .12)"
msgstr "匯入百分數爲小數 (如: 12.00% 將被匯入爲 .12)"
@@ -6020,40 +6156,6 @@ msgid ""
"the issue and try again."
msgstr "該 XML 檔案有錯誤或者不完整。請修復錯誤後重試"
-#: libraries/Index.class.php:430 tbl_relation.php:526
-msgid "No index defined!"
-msgstr "沒有已定義的索引!"
-
-#: libraries/Index.class.php:446 libraries/tbl_properties.inc.php:503
-#: tbl_structure.php:157 tbl_structure.php:162 tbl_structure.php:606
-#: tbl_tracking.php:315
-msgid "Unique"
-msgstr "唯一"
-
-#: libraries/Index.class.php:447 tbl_tracking.php:316
-msgid "Packed"
-msgstr "緊湊"
-
-#: libraries/Index.class.php:449 tbl_tracking.php:318
-msgid "Cardinality"
-msgstr "基數"
-
-#: libraries/Index.class.php:474
-msgid "The primary key has been dropped"
-msgstr "已刪除主鍵"
-
-#: libraries/Index.class.php:478
-#, php-format
-msgid "Index %s has been dropped"
-msgstr "已刪除索引 %s "
-
-#: libraries/Index.class.php:582
-#, php-format
-msgid ""
-"The indexes %1$s and %2$s seem to be equal and one of them could possibly be "
-"removed."
-msgstr "索引 %1$s 和 %2$s 可能是相同的,其中一個將可能被刪除"
-
#: libraries/kanji-encoding.lib.php:142
msgctxt "None encoding conversion"
msgid "None"
@@ -6064,24 +6166,6 @@ msgstr "無"
msgid "Convert to Kana"
msgstr "轉換爲假名"
-#: libraries/Message.class.php:260
-#, php-format
-msgid "%1$d row affected."
-msgid_plural "%1$d rows affected."
-msgstr[0] "影響了 %1$d 行。"
-
-#: libraries/Message.class.php:279
-#, php-format
-msgid "%1$d row deleted."
-msgid_plural "%1$d rows deleted."
-msgstr[0] "刪除了 %1$d 行。"
-
-#: libraries/Message.class.php:298
-#, php-format
-msgid "%1$d row inserted."
-msgid_plural "%1$d rows inserted."
-msgstr[0] "插入了 %1$d 行。"
-
#: libraries/mult_submits.inc.php:254
#, fuzzy
#| msgid "Fri"
@@ -6322,18 +6406,6 @@ msgstr "重新整理導覽框架"
msgid "This format has no options"
msgstr "該格式沒有選項"
-#: libraries/RecentTable.class.php:114
-msgid "Could not save recent table"
-msgstr "無法儲存最新資料表"
-
-#: libraries/RecentTable.class.php:149
-msgid "Recent tables"
-msgstr "最新資料表"
-
-#: libraries/RecentTable.class.php:155
-msgid "There are no recent tables"
-msgstr "沒有最新資料表"
-
#: libraries/relation.lib.php:83
msgid "not OK"
msgstr "錯誤"
@@ -6707,6 +6779,61 @@ msgstr "差異"
msgid "Target database"
msgstr "目標資料庫"
+#: libraries/sql_query_form.lib.php:223
+#, php-format
+msgid "Run SQL query/queries on server %s"
+msgstr "在伺服器 %s 運行 SQL 查詢"
+
+#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
+#, php-format
+msgid "Run SQL query/queries on database %s"
+msgstr "在資料庫 %s 運行 SQL 查詢"
+
+#: libraries/sql_query_form.lib.php:296 navigation.php:302
+#: setup/frames/index.inc.php:231
+msgid "Clear"
+msgstr "清除"
+
+#: libraries/sql_query_form.lib.php:301
+msgid "Columns"
+msgstr "字段"
+
+#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
+msgid "Bookmark this SQL query"
+msgstr "將此 SQL 查詢加爲書籤"
+
+#: libraries/sql_query_form.lib.php:343 sql.php:1021
+msgid "Let every user access this bookmark"
+msgstr "讓所有使用者均可訪問此書籤"
+
+#: libraries/sql_query_form.lib.php:349
+msgid "Replace existing bookmark of same name"
+msgstr "替換現有的同名書籤"
+
+#: libraries/sql_query_form.lib.php:365
+msgid "Do not overwrite this query from outside the window"
+msgstr "不從視窗外覆蓋此查詢"
+
+#: libraries/sql_query_form.lib.php:372
+msgid "Delimiter"
+msgstr "指令定界符"
+
+#: libraries/sql_query_form.lib.php:380
+msgid " Show this query here again "
+msgstr " 在此再次顯示此查詢 "
+
+#: libraries/sql_query_form.lib.php:443
+msgid "View only"
+msgstr "僅查看"
+
+#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
+msgid "Location of the text file"
+msgstr "文字檔案的位置"
+
+#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
+msgid "web server upload directory"
+msgstr "網站伺服器上傳資料夾"
+
#: libraries/sqlparser.lib.php:132
msgid ""
"There seems to be an error in your SQL query. The MySQL server error output "
@@ -6766,61 +6893,6 @@ msgstr "無效的識別符號"
msgid "Unknown Punctuation String"
msgstr "未知的標點符號字元串"
-#: libraries/sql_query_form.lib.php:223
-#, php-format
-msgid "Run SQL query/queries on server %s"
-msgstr "在伺服器 %s 運行 SQL 查詢"
-
-#: libraries/sql_query_form.lib.php:240 libraries/sql_query_form.lib.php:264
-#, php-format
-msgid "Run SQL query/queries on database %s"
-msgstr "在資料庫 %s 運行 SQL 查詢"
-
-#: libraries/sql_query_form.lib.php:296 navigation.php:302
-#: setup/frames/index.inc.php:231
-msgid "Clear"
-msgstr "清除"
-
-#: libraries/sql_query_form.lib.php:301
-msgid "Columns"
-msgstr "字段"
-
-#: libraries/sql_query_form.lib.php:336 sql.php:1009 sql.php:1010 sql.php:1027
-msgid "Bookmark this SQL query"
-msgstr "將此 SQL 查詢加爲書籤"
-
-#: libraries/sql_query_form.lib.php:343 sql.php:1021
-msgid "Let every user access this bookmark"
-msgstr "讓所有使用者均可訪問此書籤"
-
-#: libraries/sql_query_form.lib.php:349
-msgid "Replace existing bookmark of same name"
-msgstr "替換現有的同名書籤"
-
-#: libraries/sql_query_form.lib.php:365
-msgid "Do not overwrite this query from outside the window"
-msgstr "不從視窗外覆蓋此查詢"
-
-#: libraries/sql_query_form.lib.php:372
-msgid "Delimiter"
-msgstr "指令定界符"
-
-#: libraries/sql_query_form.lib.php:380
-msgid " Show this query here again "
-msgstr " 在此再次顯示此查詢 "
-
-#: libraries/sql_query_form.lib.php:443
-msgid "View only"
-msgstr "僅查看"
-
-#: libraries/sql_query_form.lib.php:490 prefs_manage.php:241
-msgid "Location of the text file"
-msgstr "文字檔案的位置"
-
-#: libraries/sql_query_form.lib.php:502 tbl_change.php:887
-msgid "web server upload directory"
-msgstr "網站伺服器上傳資料夾"
-
#: libraries/sqlvalidator.lib.php:67
#, php-format
msgid ""
@@ -6829,48 +6901,6 @@ msgid ""
msgstr ""
"SQL 檢驗程序無法原始化。請檢查是否已經安裝了%s檔案%s內說明的必需 PHP 外掛"
-#: libraries/StorageEngine.class.php:195
-msgid ""
-"There is no detailed status information available for this storage engine."
-msgstr "沒有該儲存引擎的詳細狀態資訊"
-
-#: libraries/StorageEngine.class.php:355
-#, php-format
-msgid "%s is available on this MySQL server."
-msgstr "MySQL 伺服器支援 %s"
-
-#: libraries/StorageEngine.class.php:358
-#, php-format
-msgid "%s has been disabled for this MySQL server."
-msgstr "%s 在此 MySQL 伺服器上被禁止了"
-
-#: libraries/StorageEngine.class.php:362
-#, php-format
-msgid "This MySQL server does not support the %s storage engine."
-msgstr "此 MySQL 伺服器不支援 %s 儲存引擎"
-
-#: libraries/Table.class.php:1027
-msgid "Invalid database"
-msgstr "無效的資料庫"
-
-#: libraries/Table.class.php:1041 tbl_get_field.php:25
-msgid "Invalid table name"
-msgstr "無效的資料資料表名稱"
-
-#: libraries/Table.class.php:1056
-#, php-format
-msgid "Error renaming table %1$s to %2$s"
-msgstr "將表 %1$s 改名爲 %2$s 時發生錯誤"
-
-#: libraries/Table.class.php:1139
-#, php-format
-msgid "Table %s has been renamed to %s"
-msgstr "已將資料表 %s 改名爲 %s"
-
-#: libraries/Table.class.php:1272
-msgid "Could not save table UI preferences"
-msgstr "無法儲存表格介面使用者喜好設定"
-
#: libraries/tbl_links.inc.php:117 libraries/tbl_links.inc.php:118
msgid "Table seems to be empty!"
msgstr "資料表是空的!"
@@ -6981,38 +7011,6 @@ msgstr "分區定義"
msgid "+ Add a value"
msgstr "+ 增加"
-#: libraries/Theme.class.php:160
-#, php-format
-msgid "No valid image path for theme %s found!"
-msgstr "找不到佈景主題 %s 指定圖片路徑!"
-
-#: libraries/Theme.class.php:380
-msgid "No preview available."
-msgstr "沒有可用的預覽。"
-
-#: libraries/Theme.class.php:383
-msgid "take it"
-msgstr "確定"
-
-#: libraries/Theme_Manager.class.php:109
-#, php-format
-msgid "Default theme %s not found!"
-msgstr "未找到預設主題 %s !"
-
-#: libraries/Theme_Manager.class.php:147
-#, php-format
-msgid "Theme %s not found!"
-msgstr "未找到主題 %s !"
-
-#: libraries/Theme_Manager.class.php:215
-#, php-format
-msgid "Theme path not found for theme %s!"
-msgstr "找不到主題 %s 的路徑"
-
-#: libraries/Theme_Manager.class.php:291 themes.php:20 themes.php:40
-msgid "Theme"
-msgstr ""
-
#: libraries/transformations/application_octetstream__download.inc.php:9
msgid ""
"Displays a link to download the binary data of the column. You can use the "
@@ -8010,8 +8008,8 @@ msgstr "刪除與使用者同名的資料庫"
msgid ""
"Note: phpMyAdmin gets the users' privileges directly from MySQL's privilege "
"tables. The content of these tables may differ from the privileges the "
-"server uses, if they have been changed manually. In this case, you should %"
-"sreload the privileges%s before you continue."
+"server uses, if they have been changed manually. In this case, you should "
+"%sreload the privileges%s before you continue."
msgstr ""
"注意:phpMyAdmin 直接由 MySQL 權限表取得使用者權限。如果使用者手動更改表,表"
"內容將可能與伺服器使用的使用者權限有異。在這種情況下,您應在繼續前%s重新載入"
@@ -10395,8 +10393,8 @@ msgstr "將 view改名爲"
#~ "Note that not every result table can be put to the chart. See FAQ 6.29"
#~ msgstr ""
-#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
+#~ "請注意不是所有的結果表都能繪圖。參見常見問題 (FAQ) 6.29"
#~ msgid "Add a New User"
#~ msgstr "新增新使用者"
diff --git a/querywindow.php b/querywindow.php
index 0b92ad893b..3e5207cc9e 100644
--- a/querywindow.php
+++ b/querywindow.php
@@ -4,30 +4,6 @@
* this file is register_globals safe
*
* @todo move JavaScript out of here into .js files
- * @uses $cfg['QueryWindowDefTab']
- * @uses $cfg['PropertiesIconic']
- * @uses $cfg['QueryHistoryDB']
- * @uses $cfg['Server']['user']
- * @uses $cfg['AllowUserDropDatabase']
- * @uses $cfg['Confirm']
- * @uses $GLOBALS['db']
- * @uses $GLOBALS['table']
- * @uses PMA_isSuperuser()
- * @uses PMA_outBufferPre()
- * @uses PMA_getRelationsParam()
- * @uses PMA_isValid()
- * @uses PMA_ifSetOr()
- * @uses PMA_getHistory()
- * @uses PMA_generate_common_url()
- * @uses PMA_generate_common_hidden_inputs()
- * @uses PMA_escapeJsString()
- * @uses PMA_generate_html_tabs()
- * @uses PMA_sqlQueryForm()
- * @uses PMA_jsFormat()
- * @uses in_array()
- * @uses strlen()
- * @uses preg_replace()
- * @uses htmlspecialchars()
* @package phpMyAdmin
*/
diff --git a/scripts/remove-incomplete-mo b/scripts/remove-incomplete-mo
index d9e485c1e9..ec7d3b3dd3 100755
--- a/scripts/remove-incomplete-mo
+++ b/scripts/remove-incomplete-mo
@@ -8,7 +8,7 @@ set -e
#
# How many percent needs to be translated
#
-THRESHOLD=50
+THRESHOLD=40
#
# Generated output file
diff --git a/scripts/update-po b/scripts/update-po
index 0475b6dd38..a12e59890b 100755
--- a/scripts/update-po
+++ b/scripts/update-po
@@ -1,6 +1,6 @@
#!/bin/sh
# vim: expandtab sw=4 ts=4 sts=4:
-export LANG=C
+export LC_ALL=C
LOCS=`ls po/*.po | sed 's@.*/\(.*\)\.po@\1@'`
xgettext \
-d phpmyadmin \
diff --git a/server_binlog.php b/server_binlog.php
index b4915652f7..02b08005ed 100644
--- a/server_binlog.php
+++ b/server_binlog.php
@@ -3,25 +3,6 @@
/**
* display the binary logs and the content of the selected
*
- * @uses $cfg['MainPageIconic']
- * @uses $cfg['NavigationBarIconic']
- * @uses $cfg['MaxRows']
- * @uses $cfg['LimitChars']
- * @uses $pmaThemeImage
- * @uses $binary_logs
- * @uses PMA_generate_common_hidden_inputs()
- * @uses PMA_generate_common_url()
- * @uses PMA_formatByteDown()
- * @uses PMA_DBI_fetch_assoc()
- * @uses PMA_strlen()
- * @uses PMA_substr()
- * @uses $_REQUEST['pos']
- * @uses $_REQUEST['log']
- * @uses $_REQUEST['dontlimitchars']
- * @uses count()
- * @uses array_key_exists()
- * @uses implode()
- * @uses htmlspecialchars()
* @package phpMyAdmin
*/
diff --git a/server_privileges.php b/server_privileges.php
index cedbcef459..7cd802f232 100644
--- a/server_privileges.php
+++ b/server_privileges.php
@@ -166,8 +166,8 @@ function PMA_RangeOfUsers($initial = '')
// strtolower() is used because the User field
// might be BINARY, so LIKE would be case sensitive
if (!empty($initial)) {
- $ret = " WHERE `User` LIKE '" . PMA_sqlAddslashes($initial) . "%'"
- . " OR `User` LIKE '" . PMA_sqlAddslashes(strtolower($initial)) . "%'";
+ $ret = " WHERE `User` LIKE '" . PMA_sqlAddSlashes($initial, true) . "%'"
+ . " OR `User` LIKE '" . PMA_sqlAddSlashes(strtolower($initial), true) . "%'";
} else {
$ret = '';
}
@@ -340,23 +340,23 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = true)
if ($db == '*') {
$sql_query =
"SELECT * FROM `mysql`.`user`"
- ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
- ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';";
+ ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'"
+ ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "';";
} elseif ($table == '*') {
$sql_query =
"SELECT * FROM `mysql`.`db`"
- ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
- ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'"
+ ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'"
+ ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "'"
." AND '" . PMA_unescape_mysql_wildcards($db) . "'"
." LIKE `Db`;";
} else {
$sql_query =
"SELECT `Table_priv`"
." FROM `mysql`.`tables_priv`"
- ." WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
- ." AND `Host` = '" . PMA_sqlAddslashes($hostname) . "'"
+ ." WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'"
+ ." AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "'"
." AND `Db` = '" . PMA_unescape_mysql_wildcards($db) . "'"
- ." AND `Table_name` = '" . PMA_sqlAddslashes($table) . "';";
+ ." AND `Table_name` = '" . PMA_sqlAddSlashes($table) . "';";
}
$row = PMA_DBI_fetch_single_row($sql_query);
}
@@ -420,13 +420,13 @@ function PMA_displayPrivTable($db = '*', $table = '*', $submit = true)
'SELECT `Column_name`, `Column_priv`'
.' FROM `mysql`.`columns_priv`'
.' WHERE `User`'
- .' = \'' . PMA_sqlAddslashes($username) . "'"
+ .' = \'' . PMA_sqlAddSlashes($username) . "'"
.' AND `Host`'
- .' = \'' . PMA_sqlAddslashes($hostname) . "'"
+ .' = \'' . PMA_sqlAddSlashes($hostname) . "'"
.' AND `Db`'
- .' = \'' . PMA_sqlAddslashes(PMA_unescape_mysql_wildcards($db)) . "'"
+ .' = \'' . PMA_sqlAddSlashes(PMA_unescape_mysql_wildcards($db)) . "'"
.' AND `Table_name`'
- .' = \'' . PMA_sqlAddslashes($table) . '\';');
+ .' = \'' . PMA_sqlAddSlashes($table) . '\';');
while ($row1 = PMA_DBI_fetch_row($res)) {
$row1[1] = explode(',', $row1[1]);
@@ -809,9 +809,9 @@ function PMA_displayLoginInformationFields($mode = 'new')
if (isset($_REQUEST['change_copy'])) {
$user_host_condition =
' WHERE `User`'
- .' = \'' . PMA_sqlAddslashes($old_username) . "'"
+ .' = \'' . PMA_sqlAddSlashes($old_username) . "'"
.' AND `Host`'
- .' = \'' . PMA_sqlAddslashes($old_hostname) . '\';';
+ .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\';';
$row = PMA_DBI_fetch_single_row('SELECT * FROM `mysql`.`user` ' . $user_host_condition);
if (! $row) {
PMA_Message::notice(__('No user found.'))->display();
@@ -855,8 +855,8 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
break;
}
$sql = "SELECT '1' FROM `mysql`.`user`"
- . " WHERE `User` = '" . PMA_sqlAddslashes($username) . "'"
- . " AND `Host` = '" . PMA_sqlAddslashes($hostname) . "';";
+ . " WHERE `User` = '" . PMA_sqlAddSlashes($username) . "'"
+ . " AND `Host` = '" . PMA_sqlAddSlashes($hostname) . "';";
if (PMA_DBI_fetch_value($sql) == 1) {
$message = PMA_Message::error(__('The user %s already exists!'));
$message->addParam('[i]\'' . $username . '\'@\'' . $hostname . '\'[/i]');
@@ -864,17 +864,17 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
$_add_user_error = true;
} else {
- $create_user_real = 'CREATE USER \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\'';
+ $create_user_real = 'CREATE USER \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\'';
$real_sql_query =
'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO \''
- . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\'';
+ . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\'';
if ($pred_password != 'none' && $pred_password != 'keep') {
$sql_query = $real_sql_query . ' IDENTIFIED BY \'***\'';
- $real_sql_query .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\'';
+ $real_sql_query .= ' IDENTIFIED BY \'' . PMA_sqlAddSlashes($pma_pw) . '\'';
if (isset($create_user_real)) {
$create_user_show = $create_user_real . ' IDENTIFIED BY \'***\'';
- $create_user_real .= ' IDENTIFIED BY \'' . PMA_sqlAddslashes($pma_pw) . '\'';
+ $create_user_real .= ' IDENTIFIED BY \'' . PMA_sqlAddSlashes($pma_pw) . '\'';
}
} else {
if ($pred_password == 'keep' && !empty($password)) {
@@ -949,7 +949,7 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
case '1' :
// Create database with same name and grant all privileges
$q = 'CREATE DATABASE IF NOT EXISTS '
- . PMA_backquote(PMA_sqlAddslashes($username)) . ';';
+ . PMA_backquote(PMA_sqlAddSlashes($username)) . ';';
$sql_query .= $q;
if (! PMA_DBI_try_query($q)) {
$message = PMA_Message::rawError(PMA_DBI_getError());
@@ -968,8 +968,8 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
}
$q = 'GRANT ALL PRIVILEGES ON '
- . PMA_backquote(PMA_sqlAddslashes($username)) . '.* TO \''
- . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . PMA_backquote(PMA_sqlAddSlashes($username)) . '.* TO \''
+ . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
$sql_query .= $q;
if (! PMA_DBI_try_query($q)) {
$message = PMA_Message::rawError(PMA_DBI_getError());
@@ -978,8 +978,8 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
case '2' :
// Grant all privileges on wildcard name (username\_%)
$q = 'GRANT ALL PRIVILEGES ON '
- . PMA_backquote(PMA_sqlAddslashes($username) . '\_%') . '.* TO \''
- . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . PMA_backquote(PMA_sqlAddSlashes($username) . '\_%') . '.* TO \''
+ . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
$sql_query .= $q;
if (! PMA_DBI_try_query($q)) {
$message = PMA_Message::rawError(PMA_DBI_getError());
@@ -988,8 +988,8 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
case '3' :
// Grant all privileges on the specified database to the new user
$q = 'GRANT ALL PRIVILEGES ON '
- . PMA_backquote(PMA_sqlAddslashes($dbname)) . '.* TO \''
- . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . PMA_backquote(PMA_sqlAddSlashes($dbname)) . '.* TO \''
+ . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
$sql_query .= $q;
if (! PMA_DBI_try_query($q)) {
$message = PMA_Message::rawError(PMA_DBI_getError());
@@ -1024,15 +1024,15 @@ if (isset($_REQUEST['adduser_submit']) || isset($_REQUEST['change_copy'])) {
if (isset($_REQUEST['change_copy'])) {
$user_host_condition =
' WHERE `User`'
- .' = \'' . PMA_sqlAddslashes($old_username) . "'"
+ .' = \'' . PMA_sqlAddSlashes($old_username) . "'"
.' AND `Host`'
- .' = \'' . PMA_sqlAddslashes($old_hostname) . '\';';
+ .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\';';
$res = PMA_DBI_query('SELECT * FROM `mysql`.`db`' . $user_host_condition);
while ($row = PMA_DBI_fetch_assoc($res)) {
$queries[] =
'GRANT ' . join(', ', PMA_extractPrivInfo($row))
.' ON ' . PMA_backquote($row['Db']) . '.*'
- .' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\''
+ .' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\''
. ($row['Grant_priv'] == 'Y' ? ' WITH GRANT OPTION;' : ';');
}
PMA_DBI_free_result($res);
@@ -1046,13 +1046,13 @@ if (isset($_REQUEST['change_copy'])) {
'SELECT `Column_name`, `Column_priv`'
.' FROM `mysql`.`columns_priv`'
.' WHERE `User`'
- .' = \'' . PMA_sqlAddslashes($old_username) . "'"
+ .' = \'' . PMA_sqlAddSlashes($old_username) . "'"
.' AND `Host`'
- .' = \'' . PMA_sqlAddslashes($old_hostname) . '\''
+ .' = \'' . PMA_sqlAddSlashes($old_hostname) . '\''
.' AND `Db`'
- .' = \'' . PMA_sqlAddslashes($row['Db']) . "'"
+ .' = \'' . PMA_sqlAddSlashes($row['Db']) . "'"
.' AND `Table_name`'
- .' = \'' . PMA_sqlAddslashes($row['Table_name']) . "'"
+ .' = \'' . PMA_sqlAddSlashes($row['Table_name']) . "'"
.';',
null, PMA_DBI_QUERY_STORE);
@@ -1096,7 +1096,7 @@ if (isset($_REQUEST['change_copy'])) {
$queries[] =
'GRANT ' . join(', ', $tmp_privs1)
. ' ON ' . PMA_backquote($row['Db']) . '.' . PMA_backquote($row['Table_name'])
- . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\''
+ . ' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\''
. (in_array('Grant', explode(',', $row['Table_priv'])) ? ' WITH GRANT OPTION;' : ';');
}
}
@@ -1110,11 +1110,11 @@ if (!empty($update_privs)) {
$sql_query0 =
'REVOKE ALL PRIVILEGES ON ' . $db_and_table
- . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
if (! isset($Grant_priv) || $Grant_priv != 'Y') {
$sql_query1 =
'REVOKE GRANT OPTION ON ' . $db_and_table
- . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
} else {
$sql_query1 = '';
}
@@ -1125,7 +1125,7 @@ if (!empty($update_privs)) {
$sql_query2 =
'GRANT ' . join(', ', PMA_extractPrivInfo())
. ' ON ' . $db_and_table
- . ' TO \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\'';
+ . ' TO \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\'';
/**
* @todo similar code appears twice in this script
@@ -1186,10 +1186,10 @@ if (isset($_REQUEST['revokeall'])) {
$sql_query0 =
'REVOKE ALL PRIVILEGES ON ' . $db_and_table
- . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
$sql_query1 =
'REVOKE GRANT OPTION ON ' . $db_and_table
- . ' FROM \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\';';
+ . ' FROM \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\';';
PMA_DBI_query($sql_query0);
if (! PMA_DBI_try_query($sql_query1)) {
@@ -1229,8 +1229,8 @@ if (isset($_REQUEST['change_pw'])) {
. 'PASSWORD';
// in $sql_query which will be displayed, hide the password
- $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $pma_pw) . '\')');
- $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddslashes($username) . '\'@\'' . PMA_sqlAddslashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . PMA_sqlAddslashes($pma_pw) . '\')');
+ $sql_query = 'SET PASSWORD FOR \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . preg_replace('@.@s', '*', $pma_pw) . '\')');
+ $local_query = 'SET PASSWORD FOR \'' . PMA_sqlAddSlashes($username) . '\'@\'' . PMA_sqlAddSlashes($hostname) . '\' = ' . (($pma_pw == '') ? '\'\'' : $hashing_function . '(\'' . PMA_sqlAddSlashes($pma_pw) . '\')');
PMA_DBI_try_query($local_query)
or PMA_mysqlDie(PMA_DBI_getError(), $sql_query, false, $err_url);
$message = PMA_Message::success(__('The password for %s was changed successfully.'));
@@ -1254,7 +1254,7 @@ if (isset($_REQUEST['delete']) || (isset($_REQUEST['change_copy']) && $_REQUEST[
foreach ($selected_usr as $each_user) {
list($this_user, $this_host) = explode('', $each_user);
$queries[] = '# ' . sprintf(__('Deleting %s'), '\'' . $this_user . '\'@\'' . $this_host . '\'') . ' ...';
- $queries[] = 'DROP USER \'' . PMA_sqlAddslashes($this_user) . '\'@\'' . PMA_sqlAddslashes($this_host) . '\';';
+ $queries[] = 'DROP USER \'' . PMA_sqlAddSlashes($this_user) . '\'@\'' . PMA_sqlAddSlashes($this_host) . '\';';
if (isset($_REQUEST['drop_users_db'])) {
$queries[] = 'DROP DATABASE IF EXISTS ' . PMA_backquote($this_user) . ';';
@@ -1451,7 +1451,7 @@ if (isset($viewing_mode) && $viewing_mode == 'db') {
if (isset($_REQUEST['export'])) {
echo '' . __('User') . ' \'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'';
echo ' | |